Package it.unimi.dsi.fastutil.objects
Class ObjectObjectImmutablePair<K,V>
- java.lang.Object
-
- it.unimi.dsi.fastutil.objects.ObjectObjectImmutablePair<K,V>
-
- All Implemented Interfaces:
Pair<K,V>
,Serializable
- Direct Known Subclasses:
ObjectObjectImmutableSortedPair
public class ObjectObjectImmutablePair<K,V> extends Object implements Pair<K,V>, Serializable
A type-specific immutablePair
; provides some additional methods that use polymorphism to avoid (un)boxing.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectObjectImmutablePair(K left, V right)
Creates a new type-specific immutablePair
with given left and right value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
int
hashCode()
K
left()
Returns the left element of this pair.static <K,V>
ObjectObjectImmutablePair<K,V>of(K left, V right)
Returns a new type-specific immutablePair
with given left and right value.V
right()
Returns the right element of this pair.String
toString()
Returns a string representation of this pair in the form <l,r>.
-
-
-
Method Detail
-
of
public static <K,V> ObjectObjectImmutablePair<K,V> of(K left, V right)
Returns a new type-specific immutablePair
with given left and right value.- Parameters:
left
- the left value.right
- the right value.- Implementation Notes:
- This factory method delegates to the constructor.
-
right
public V right()
Description copied from interface:Pair
Returns the right element of this pair.
-
-