public interface Triple<A,B,C>
| Modifier and Type | Method and Description |
|---|---|
A |
getA() |
B |
getB() |
C |
getC() |
default A |
getFirst() |
default A |
getLeft() |
default B |
getMiddle() |
default C |
getRight() |
default B |
getSecond() |
default C |
getThird() |
static <A,B,C> ImmutableTriple<A,B,C> |
immutable(A a,
B b,
C c) |
static <A,B,C> MutableTriple<A,B,C> |
mutable(A a,
B b,
C c) |
static <A,B,C> MutableTriple<A,B,C> mutable(A a, B b, C c)
static <A,B,C> ImmutableTriple<A,B,C> immutable(A a, B b, C c)
A getA()
default A getLeft()
default A getFirst()
B getB()
default B getMiddle()
default B getSecond()
C getC()
default C getRight()
default C getThird()