T1 - The type of the first valueT2 - The type of the second valueT3 - The type of the third valueT4 - The type of the fourth valuepublic interface Quadruple<T1,T2,T3,T4> extends ViewableAsQuadruple<T1,T2,T3,T4>
| Modifier and Type | Method and Description |
|---|---|
Quadruple<T1,T2,T3,T4> |
asQuadruple() |
T1 |
first() |
static <T1,T2,T3,T4> |
flatten(Tuple<Tuple<Tuple<T1,T2>,T3>,T4> nestedTuple) |
T4 |
fourth() |
<S1,S2,S3,S4> |
map(Function<? super T1,? extends S1> firstMapper,
Function<? super T2,? extends S2> secondMapper,
Function<? super T3,? extends S3> thirdMapper,
Function<? super T4,? extends S4> fourthMapper)
Create a new quadruple by applying a function to each element, and putting the
results into a new quadruple.
|
<S1> Quadruple<S1,T2,T3,T4> |
mapFirst(Function<? super T1,? extends S1> mapper)
Create a new quadruple by applying a function to the first element, and putting the
result as the first element of the new quadruple.
|
<S4> Quadruple<T1,T2,T3,S4> |
mapFourth(Function<? super T4,? extends S4> mapper)
Create a new quadruple by applying a function to the fourth element, and putting the
result as the fourth element of the new quadruple.
|
<S2> Quadruple<T1,S2,T3,T4> |
mapSecond(Function<? super T2,? extends S2> mapper)
Create a new quadruple by applying a function to the second element, and putting the
result as the second element of the new quadruple.
|
<S3> Quadruple<T1,T2,S3,T4> |
mapThird(Function<? super T3,? extends S3> mapper)
Create a new quadruple by applying a function to the third element, and putting the
result as the third element of the new quadruple.
|
static <T1,T2,T3,T4> |
of(T1 first,
T2 second,
T3 third,
T4 fourth) |
T2 |
second() |
T3 |
third() |
static <T1,T2,T3,T4> Quadruple<T1,T2,T3,T4> of(T1 first, T2 second, T3 third, T4 fourth)
static <T1,T2,T3,T4> Quadruple<T1,T2,T3,T4> flatten(Tuple<Tuple<Tuple<T1,T2>,T3>,T4> nestedTuple)
T1 first()
T2 second()
T3 third()
T4 fourth()
<S1> Quadruple<S1,T2,T3,T4> mapFirst(Function<? super T1,? extends S1> mapper)
mapper - the function to apply to the first element<S2> Quadruple<T1,S2,T3,T4> mapSecond(Function<? super T2,? extends S2> mapper)
mapper - the function to apply to the second element<S3> Quadruple<T1,T2,S3,T4> mapThird(Function<? super T3,? extends S3> mapper)
mapper - the function to apply to the third element<S4> Quadruple<T1,T2,T3,S4> mapFourth(Function<? super T4,? extends S4> mapper)
mapper - the function to apply to the fourth element<S1,S2,S3,S4> Quadruple<S1,S2,S3,S4> map(Function<? super T1,? extends S1> firstMapper, Function<? super T2,? extends S2> secondMapper, Function<? super T3,? extends S3> thirdMapper, Function<? super T4,? extends S4> fourthMapper)
firstMapper - the function to apply to the first elementsecondMapper - the function to apply to the second elementthirdMapper - the function to apply to the third elementfourthMapper - the function to apply to the fourth elementCopyright © 2018 Digipost. All rights reserved.