Interface ReferenceCharPair<K>
- All Known Implementing Classes:
ReferenceCharImmutablePair,ReferenceCharMutablePair
-
Method Summary
Modifier and TypeMethodDescriptionstatic <K> ReferenceCharPair<K> of(K left, char right) Returns a new type-specific immutablePairwith given left and right value.default Characterright()Deprecated.Please use the corresponding type-specific method instead.default ReferenceCharPair<K> right(char r) Sets the right element of this pair (optional operation).default ReferenceCharPair<K> Deprecated.Please use the corresponding type-specific method instead.charReturns the right element of this pair.default Charactersecond()Deprecated.Please use the corresponding type-specific method instead.default ReferenceCharPair<K> second(char r) Sets the right element of this pair (optional operation).default ReferenceCharPair<K> Deprecated.Please use the corresponding type-specific method instead.default charReturns the right element of this pair.default Charactervalue()Deprecated.Please use the corresponding type-specific method instead.default ReferenceCharPair<K> value(char r) Sets the right element of this pair (optional operation).default ReferenceCharPair<K> Deprecated.Please use the corresponding type-specific method instead.default charReturns the right element of this pair.
-
Method Details
-
rightChar
char rightChar()Returns the right element of this pair.- Returns:
- the right element of this pair.
-
right
-
right
Sets the right element of this pair (optional operation).- Parameters:
r- a new value for the right element.- Implementation Specification:
- This implementation throws an
UnsupportedOperationException.
-
right
Deprecated.Please use the corresponding type-specific method instead.Sets the right element of this pair (optional operation). -
secondChar
default char secondChar()Returns the right element of this pair.- Returns:
- the right element of this pair.
- Implementation Specification:
- This implementation delegates to
right().
-
second
-
second
Sets the right element of this pair (optional operation).- Parameters:
r- a new value for the right element.- Implementation Specification:
- This implementation delegates to
Pair.right(Object).
-
second
Deprecated.Please use the corresponding type-specific method instead.Sets the right element of this pair (optional operation). -
valueChar
default char valueChar()Returns the right element of this pair.- Returns:
- the right element of this pair.
- Implementation Specification:
- This implementation delegates to
right().
-
value
-
value
Sets the right element of this pair (optional operation).- Parameters:
r- a new value for the right element.- Implementation Specification:
- This implementation delegates to
Pair.right(Object).
-
value
Deprecated.Please use the corresponding type-specific method instead.Sets the right element of this pair (optional operation). -
of
Returns a new type-specific immutablePairwith given left and right value.- Parameters:
left- the left value.right- the right value.
-