public final class Tuple3<T1,T2,T3> extends java.lang.Object
A container for three values.
Use the corresponding Tuple.create(Object, Object, Object) method to instantiate this tuple.
Tuple.create(Object, Object, Object)
T1
value1()
T2
value2()
T3
value3()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public T1 value1()
Get the first value.
public T2 value2()
Get the second value.
public T3 value3()
Get the third value.