public class Triple<A,B,C>
extends Object
Instances of this class holds three values of arbitrary type.
-
Constructor Summary
Constructors
Constructor |
Description |
Triple(A a,
B b,
C c) |
|
-
Method Summary
Modifier and Type |
Method |
Description |
A |
getFirst() |
|
B |
getSecond() |
|
C |
getThird() |
|
static <E,
F,
G> DRes<Triple<E,F,G>> |
lazy(E e,
F f,
G g) |
|
static <E,
F,
G> Triple<E,F,G> |
of(E e,
F f,
G g) |
|
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
public Triple(
A a,
B b,
C c)
-
Method Details
-
public static <E,
F,
G> Triple<E,F,G> of(
E e,
F f,
G g)
-
public static <E,
F,
G> DRes<Triple<E,F,G>> lazy(
E e,
F f,
G g)
-
-
-