public interface ShortObjectPair<V> extends Pair<java.lang.Short,V>
Pair
; provides some additional methods that use polymorphism to avoid (un)boxing.Modifier and Type | Method and Description |
---|---|
default java.lang.Short |
first()
Deprecated.
Please use the corresponding type-specific method instead.
|
default ShortObjectPair<V> |
first(short l)
Sets the left element of this pair (optional operation).
|
default ShortObjectPair<V> |
first(java.lang.Short l)
Deprecated.
Please use the corresponding type-specific method instead.
|
default short |
firstShort()
Returns the left element of this pair.
|
default java.lang.Short |
key()
Deprecated.
Please use the corresponding type-specific method instead.
|
default ShortObjectPair<V> |
key(short l)
Sets the left element of this pair (optional operation).
|
default ShortObjectPair<V> |
key(java.lang.Short l)
Deprecated.
|
default short |
keyShort()
Returns the left element of this pair.
|
default java.lang.Short |
left()
Deprecated.
Please use the corresponding type-specific method instead.
|
default ShortObjectPair<V> |
left(short l)
Sets the left element of this pair (optional operation).
|
default ShortObjectPair<V> |
left(java.lang.Short l)
Deprecated.
Please use the corresponding type-specific method instead.
|
short |
leftShort()
Returns the left element of this pair.
|
static <V> java.util.Comparator<ShortObjectPair<V>> |
lexComparator()
Returns a lexicographical comparator for pairs.
|
static <V> ShortObjectPair<V> |
of(short left,
V right)
Returns a new type-specific immutable
Pair with given left and right value. |
short leftShort()
@Deprecated default java.lang.Short left()
default ShortObjectPair<V> left(short l)
l
- a new value for the left element.UnsupportedOperationException
.@Deprecated default ShortObjectPair<V> left(java.lang.Short l)
default short firstShort()
left()
.@Deprecated default java.lang.Short first()
default ShortObjectPair<V> first(short l)
l
- a new value for the left element.Pair.left(Object)
.@Deprecated default ShortObjectPair<V> first(java.lang.Short l)
default short keyShort()
left()
.@Deprecated default java.lang.Short key()
default ShortObjectPair<V> key(short l)
l
- a new value for the left element.Pair.left(Object)
.@Deprecated default ShortObjectPair<V> key(java.lang.Short l)
Pair
static <V> ShortObjectPair<V> of(short left, V right)
Pair
with given left and right value.static <V> java.util.Comparator<ShortObjectPair<V>> lexComparator()
The comparator returned by this method implements lexicographical order. It compares first the left elements: if the result of the comparison is nonzero, it returns said result. Otherwise, this comparator returns the result of the comparison of the right elements.
lexComparator
in interface Pair<java.lang.Short,V>