Package it.unimi.dsi.fastutil.objects
Class ReferenceBooleanMutablePair<K>
java.lang.Object
it.unimi.dsi.fastutil.objects.ReferenceBooleanMutablePair<K>
- All Implemented Interfaces:
ReferenceBooleanPair<K>,Pair<K,Boolean>,Serializable
public class ReferenceBooleanMutablePair<K> extends Object implements ReferenceBooleanPair<K>, Serializable
A type-specific mutable
Pair; provides
some additional methods that use polymorphism to avoid (un)boxing.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ReferenceBooleanMutablePair(K left, boolean right)Creates a new type-specific mutablePairwith given left and right value. -
Method Summary
Modifier and Type Method Description booleanequals(Object other)inthashCode()Kleft()Returns the left element of this pair.ReferenceBooleanMutablePair<K>left(K l)Sets the left element of this pair (optional operation).static <K> ReferenceBooleanMutablePair<K>of(K left, boolean right)Returns a new type-specific mutablePairwith given left and right value.ReferenceBooleanMutablePair<K>right(boolean r)Sets the right element of this pair (optional operation).booleanrightBoolean()Returns the right element of this pair.StringtoString()Returns a string representation of this pair in the form <l,r>.Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceBooleanPair
right, right, second, second, second, secondBoolean, value, value, value, valueBoolean
-
Constructor Details
-
ReferenceBooleanMutablePair
Creates a new type-specific mutablePairwith given left and right value.- Parameters:
left- the left value.right- the right value.
-
-
Method Details
-
of
Returns a new type-specific mutablePairwith given left and right value.- Parameters:
left- the left value.right- the right value.- Implementation Specification:
- This factory method delegates to the constructor.
-
left
Description copied from interface:PairReturns the left element of this pair. -
left
Description copied from interface:PairSets the left element of this pair (optional operation). -
rightBoolean
public boolean rightBoolean()Description copied from interface:ReferenceBooleanPairReturns the right element of this pair.- Specified by:
rightBooleanin interfaceReferenceBooleanPair<K>- Returns:
- the right element of this pair.
-
right
Description copied from interface:ReferenceBooleanPairSets the right element of this pair (optional operation).- Specified by:
rightin interfaceReferenceBooleanPair<K>- Parameters:
r- a new value for the right element.
-
equals
-
hashCode
public int hashCode() -
toString
Returns a string representation of this pair in the form <l,r>.
-