Module javafx.base
Package javafx.util

Class Pair<K,V>

    • Constructor Detail

      • Pair

        public Pair​(K key,
                    V value)
        Creates a new pair
        Parameters:
        key - The key for this pair
        value - The value to use for this pair
    • Method Detail

      • getKey

        public K getKey​()
        Gets the key for this pair.
        Returns:
        key for this pair
      • getValue

        public V getValue​()
        Gets the value for this pair.
        Returns:
        value for this pair
      • toString

        public String toString​()

        String representation of this Pair.

        The default name/value delimiter '=' is always used.

        Overrides:
        toString in class Object
        Returns:
        String representation of this Pair
      • equals

        public boolean equals​(Object o)

        Test this Pair for equality with another Object.

        If the Object to be tested is not a Pair or is null, then this method returns false.

        Two Pairs are considered equal if and only if both the names and values are equal.

        Overrides:
        equals in class Object
        Parameters:
        o - the Object to test for equality with this Pair
        Returns:
        true if the given Object is equal to this Pair else false
        See Also:
        Object.hashCode(), HashMap