T1 - The type of the first non-null value held by this tupleT2 - The type of the second non-null value held by this tupleT3 - The type of the third non-null value held by this tuplepublic class Tuple3<T1,T2,T3> extends Tuple2<T1,T2>
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object o)  | 
Object | 
get(int index)
Get the object at the given index. 
 | 
T3 | 
getT3()
Type-safe way to get the third object of this  
Tuples. | 
int | 
hashCode()  | 
<R> Tuple3<R,T2,T3> | 
mapT1(Function<T1,R> mapper)
Map the 1st part (T1) of this  
Tuple3 into a different value and type,
 keeping the other parts. | 
<R> Tuple3<T1,R,T3> | 
mapT2(Function<T2,R> mapper)
Map the 2nd part (T2) of this  
Tuple3 into a different value and type,
 keeping the other parts. | 
<R> Tuple3<T1,T2,R> | 
mapT3(Function<T3,R> mapper)
Map the 3rd part (T3) of this  
Tuple3 into a different value and type,
 keeping the other parts. | 
int | 
size()
Return the number of elements in this Tuples. 
 | 
Object[] | 
toArray()
Turn this  
Tuple into a plain Object[]. | 
clone, finalize, getClass, notify, notifyAll, wait, wait, waitforEach, spliteratorpublic T3 getT3()
Tuples.public <R> Tuple3<R,T2,T3> mapT1(Function<T1,R> mapper)
Tuple3 into a different value and type,
 keeping the other parts.public <R> Tuple3<T1,R,T3> mapT2(Function<T2,R> mapper)
Tuple3 into a different value and type,
 keeping the other parts.public <R> Tuple3<T1,T2,R> mapT3(Function<T3,R> mapper)
Tuple3 into a different value and type,
 keeping the other parts.@Nullable public Object get(int index)
Tuple2public Object[] toArray()
Tuple2Tuple into a plain Object[].
 The array isn't tied to this Tuple but is a copy.public int size()
Tuple2