Package it.unimi.dsi.fastutil.longs
Class LongLongImmutableSortedPair
- java.lang.Object
-
- it.unimi.dsi.fastutil.longs.LongLongImmutablePair
-
- it.unimi.dsi.fastutil.longs.LongLongImmutableSortedPair
-
- All Implemented Interfaces:
LongLongPair
,LongLongSortedPair
,Pair<Long,Long>
,SortedPair<Long>
,Serializable
public class LongLongImmutableSortedPair extends LongLongImmutablePair implements LongLongSortedPair, Serializable
A type-specific immutableSortedPair
; provides some additional methods that use polymorphism to avoid (un)boxing.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
static LongLongImmutableSortedPair
of(long left, long right)
Returns a new type-specific immutableSortedPair
with given left and right value.String
toString()
Returns a string representation of this sorted pair in the form {l,r}.-
Methods inherited from class it.unimi.dsi.fastutil.longs.LongLongImmutablePair
hashCode, leftLong, rightLong
-
-
-
-
Method Detail
-
of
public static LongLongImmutableSortedPair of(long left, long right)
Returns a new type-specific immutableSortedPair
with given left and right value.Note that if
left
andright
are in the wrong order, they will be exchanged.- Parameters:
left
- the left value.right
- the right value.- Implementation Notes:
- This factory method delegates to the constructor.
-
equals
public boolean equals(Object other)
- Overrides:
equals
in classLongLongImmutablePair
-
toString
public String toString()
Returns a string representation of this sorted pair in the form {l,r}.- Overrides:
toString
in classLongLongImmutablePair
- Returns:
- a string representation of this pair sorted in the form {l,r}.
-
-