Class Pair<L,R>
- Type Parameters:
L- the left element typeR- the right element type
- All Implemented Interfaces:
Serializable,Comparable<Pair<L,,R>> Map.Entry<L,,R> NTuple
- Direct Known Subclasses:
ImmutablePair,MutablePair
This class is an abstract implementation defining the basic API.
It refers to the elements as 'left' and 'right'. It also implements the
Map.Entry interface where the key is 'left' and the value is 'right'.
Subclass implementations may be mutable or immutable. However, there is no restriction on the type of the stored objects that may be stored. If mutable objects are stored in the pair, then the pair itself effectively becomes mutable.
- Author:
- Chakib Daii
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintarity()Returns the number of elements contained in this tuple.intCompares the pair based on the left element followed by the right element.booleanChecks if the tuple contains the specified element.booleanCompares this pair to another based on the two elements.get(int index) Returns the element at the specified zero-based position.final LgetKey()Gets the key from this pair.abstract LgetLeft()Gets the left element from this pair.abstract RgetRight()Gets the right element from this pair.getValue()Gets the value from this pair.inthashCode()Returns a suitable hash code.static <L,R> Pair<L, R> Creates an immutable pair from a map entry.static <L,R> Pair<L, R> of(L left, R right) Creates an immutable pair of two objects inferring the generic types.static <L,R> Pair<L, R> ofNonNull(L left, R right) Creates an immutable pair of two non-null objects inferring the generic types.Object[]toArray()Returns an array containing all elements of the tuple.toString()Returns a String representation of this pair using the format($left,$right).Formats the receiver using the given format.
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
Pair
public Pair()Constructs a new instance.
-
-
Method Details
-
of
Creates an immutable pair of two objects inferring the generic types.This factory allows the pair to be created using inference to obtain the generic types.
- Type Parameters:
L- the left element typeR- the right element type- Parameters:
left- the left element, may be nullright- the right element, may be null- Returns:
- a pair formed from the two parameters, not null
-
of
Creates an immutable pair from a map entry.This factory allows the pair to be created using inference to obtain the generic types.
- Type Parameters:
L- the left element typeR- the right element type- Parameters:
pair- the map entry.- Returns:
- a pair formed from the map entry
-
ofNonNull
Creates an immutable pair of two non-null objects inferring the generic types.This factory allows the pair to be created using inference to obtain the generic types.
- Type Parameters:
L- the left element typeR- the right element type- Parameters:
left- the left element, may not be nullright- the right element, may not be null- Returns:
- a pair formed from the two parameters, not null
- Throws:
NullPointerException- if any input is null
-
compareTo
Compares the pair based on the left element followed by the right element. The types must beComparable.- Specified by:
compareToin interfaceComparable<L>- Parameters:
other- the other pair, not null- Returns:
- negative if this is less, zero if equal, positive if greater
-
equals
Compares this pair to another based on the two elements. -
getKey
Gets the key from this pair.This method implements the
Map.Entryinterface returning the left element as the key. -
getLeft
Gets the left element from this pair.When treated as a key-value pair, this is the key.
- Returns:
- the left element, may be null
-
getRight
Gets the right element from this pair.When treated as a key-value pair, this is the value.
- Returns:
- the right element, may be null
-
getValue
Gets the value from this pair.This method implements the
Map.Entryinterface returning the right element as the value. -
hashCode
public int hashCode()Returns a suitable hash code. The hash code follows the definition inMap.Entry. -
toString
Returns a String representation of this pair using the format($left,$right). -
toString
Formats the receiver using the given format.This uses
Formattableto perform the formatting. Two variables may be used to embed the left and right elements. Use%1$sfor the left element (key) and%2$sfor the right element (value). The default format used bytoString()is(%1$s,%2$s).- Parameters:
format- the format string, optionally containing%1$sand%2$s, not null- Returns:
- the formatted string, not null
-
arity
public int arity()Returns the number of elements contained in this tuple. -
get
Returns the element at the specified zero-based position. -
toArray
Returns an array containing all elements of the tuple. -
contains
Checks if the tuple contains the specified element.
-