java.lang.Object | |
↳ | android.util.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.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
first | ||||||||||
|
second |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Constructor for a Pair.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Convenience method for creating an appropriately typed pair.
|
||||||||||
|
Checks the two objects for equality by delegating to their respective
equals(Object)
methods.
|
||||||||||
|
Compute a hash code using the hash codes of the underlying objects
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Constructor for a Pair.
first | the first object in the Pair |
---|---|
second | the second object in the pair |
Convenience method for creating an appropriately typed pair.
a | the first object in the Pair |
---|---|
b | the second object in the pair |
Checks the two objects for equality by delegating to their respective
equals(Object)
methods.
o |
the
Pair
to which this one is to be checked for equality
|
---|
Compute a hash code using the hash codes of the underlying objects