| Package | Description |
|---|---|
| org.jooq.lambda.function |
This package contains function types of various degrees.
|
| org.jooq.lambda.tuple |
This package contains tuple types of various degrees.
|
| Modifier and Type | Method and Description |
|---|---|
default R |
Function6.apply(Tuple6<T1,T2,T3,T4,T5,T6> args)
Apply this function to the arguments.
|
| Modifier and Type | Method and Description |
|---|---|
Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple6.clone() |
<U1> Tuple6<U1,T2,T3,T4,T5,T6> |
Tuple6.map1(Function1<T1,U1> function)
Apply attribute 1 as argument to a function and return a new tuple with the substituted argument.
|
<U2> Tuple6<T1,U2,T3,T4,T5,T6> |
Tuple6.map2(Function1<T2,U2> function)
Apply attribute 2 as argument to a function and return a new tuple with the substituted argument.
|
<U3> Tuple6<T1,T2,U3,T4,T5,T6> |
Tuple6.map3(Function1<T3,U3> function)
Apply attribute 3 as argument to a function and return a new tuple with the substituted argument.
|
<U4> Tuple6<T1,T2,T3,U4,T5,T6> |
Tuple6.map4(Function1<T4,U4> function)
Apply attribute 4 as argument to a function and return a new tuple with the substituted argument.
|
<U5> Tuple6<T1,T2,T3,T4,U5,T6> |
Tuple6.map5(Function1<T5,U5> function)
Apply attribute 5 as argument to a function and return a new tuple with the substituted argument.
|
<U6> Tuple6<T1,T2,T3,T4,T5,U6> |
Tuple6.map6(Function1<T6,U6> function)
Apply attribute 6 as argument to a function and return a new tuple with the substituted argument.
|
static <T1,T2,T3,T4,T5,T6> |
Tuple.tuple(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5,
T6 v6)
Construct a tuple of degree 6.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Tuple6.compareTo(Tuple6<T1,T2,T3,T4,T5,T6> other) |
| Constructor and Description |
|---|
Tuple6(Tuple6<T1,T2,T3,T4,T5,T6> tuple) |
Copyright © 2014. All Rights Reserved.