Package android.util
Class Pair<F,S>
- java.lang.Object
-
- android.util.Pair<F,S>
-
public class Pair<F,S> extends java.lang.ObjectContainer 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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <A,B>
Pair<A,B>create(A a, B b)Convenience method for creating an appropriately typed pair.booleanequals(java.lang.Object o)Checks the two objects for equality by delegating to their respectiveObject.equals(Object)methods.inthashCode()Compute a hash code using the hash codes of the underlying objectsjava.lang.StringtoString()
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o)
Checks the two objects for equality by delegating to their respectiveObject.equals(Object)methods.- Overrides:
equalsin classjava.lang.Object- Parameters:
o- thePairto which this one is to be checked for equality- Returns:
- true if the underlying objects of the Pair are both considered equal
-
hashCode
public int hashCode()
Compute a hash code using the hash codes of the underlying objects- Overrides:
hashCodein classjava.lang.Object- Returns:
- a hashcode of the Pair
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
create
public static <A,B> Pair<A,B> create(A a, B b)
Convenience method for creating an appropriately typed pair.- Parameters:
a- the first object in the Pairb- the second object in the pair- Returns:
- a Pair that is templatized with the types of a and b
-
-