L - the left element type.M - the middle element type.R - the right element type.public abstract class Triple<L,M,R> extends Object implements Comparable<Triple<L,M,R>>, Serializable
This class is an abstract implementation defining the basic API. It refers to the elements as 'left', 'middle' and '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 triple, then the triple itself effectively becomes mutable.
| Modifier and Type | Field and Description |
|---|---|
static Triple<?,?,?>[] |
EMPTY_ARRAY
An empty array.
|
| Constructor and Description |
|---|
Triple()
Constructs a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(Triple<L,M,R> other)
Compares the triple based on the left element, followed by the middle element,
finally the right element.
|
static <L,M,R> Triple<L,M,R>[] |
emptyArray()
Returns the empty array singleton that can be assigned without compiler warning.
|
boolean |
equals(Object obj)
Compares this triple to another based on the three elements.
|
abstract L |
getLeft()
Gets the left element from this triple.
|
abstract M |
getMiddle()
Gets the middle element from this triple.
|
abstract R |
getRight()
Gets the right element from this triple.
|
int |
hashCode()
Returns a suitable hash code.
|
static <L,M,R> Triple<L,M,R> |
of(L left,
M middle,
R right)
Obtains an immutable triple of three objects inferring the generic types.
|
static <L,M,R> Triple<L,M,R> |
ofNonNull(L left,
M middle,
R right)
Obtains an immutable triple of three non-null objects inferring the generic types.
|
String |
toString()
Returns a String representation of this triple using the format
(left,middle,right). |
String |
toString(String format)
Formats the receiver using the given format.
|
public static final Triple<?,?,?>[] EMPTY_ARRAY
Consider using emptyArray() to avoid generics warnings.
public static <L,M,R> Triple<L,M,R>[] emptyArray()
L - the left element type.M - the middle element type.R - the right element type.public static <L,M,R> Triple<L,M,R> of(L left, M middle, R right)
This factory allows the triple to be created using inference to obtain the generic types.
L - the left element type.M - the middle element type.R - the right element type.left - the left element, may be null.middle - the middle element, may be null.right - the right element, may be null.public static <L,M,R> Triple<L,M,R> ofNonNull(L left, M middle, R right)
This factory allows the triple to be created using inference to obtain the generic types.
L - the left element type.M - the middle element type.R - the right element type.left - the left element, may not be null.middle - the middle element, may not be null.right - the right element, may not be null.NullPointerException - if any input is null.public int compareTo(Triple<L,M,R> other)
Comparable.public boolean equals(Object obj)
public abstract L getLeft()
public abstract M getMiddle()
public abstract R getRight()
public int hashCode()
The hash code is adapted from the definition in Map.Entry.
public String toString()
(left,middle,right).public String toString(String format)
This uses Formattable to perform the formatting. Three variables may
be used to embed the left and right elements. Use %1$s for the left
element, %2$s for the middle and %3$s for the right element.
The default format used by toString() is (%1$s,%2$s,%3$s).
format - the format string, optionally containing %1$s, %2$s and %3$s, not null.Copyright © 2001–2025 The Apache Software Foundation. All rights reserved.