All Methods Static Methods Instance Methods Concrete Methods
Modifier and Type |
Method |
Description |
java.util.List<java.lang.Object> |
asList() |
Gets a List of Objects containing the items composing this Tuple
|
boolean |
equals(java.lang.Object o) |
|
T4 |
getItem4() |
|
int |
hashCode() |
|
<T> Tuple4<T,T2,T3,T4> |
mapItem1(java.util.function.Function<T1,T> mapper) |
Applies a mapper function to the left (item1) part of this Tuple2 to produce a new Tuple2 .
|
<T> Tuple4<T1,T,T3,T4> |
mapItem2(java.util.function.Function<T2,T> mapper) |
Applies a mapper function to the right part (item2) of this Tuple2 to produce a new Tuple2 .
|
<T> Tuple4<T1,T2,T,T4> |
mapItem3(java.util.function.Function<T3,T> mapper) |
|
<T> Tuple4<T1,T2,T3,T> |
mapItem4(java.util.function.Function<T4,T> mapper) |
|
java.lang.Object |
nth(int index) |
Get the item stored at the given index.
|
static <T1,T2,T3,T4> Tuple4<T1,T2,T3,T4> |
of(T1 a,
T2 b,
T3 c,
T4 d) |
|
int |
size() |
|
java.lang.String |
toString() |
|