-
public class Pair<F, S>
Container to ease passing around a tuple of two objects. This object provides a sensible implementation of equals(), returning true if equals() is true on each of the contained objects.
-
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
Checks the two objects for equality by delegating to their respective equals methods. int
hashCode()
Compute a hash code using the hash codes of the underlying objects String
toString()
static <A, B> Pair<A, B>
create(A a, B b)
Convenience method for creating an appropriately typed pair.
-