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 |
Function7.apply(Tuple7<T1,T2,T3,T4,T5,T6,T7> args)
Apply this function to the arguments.
|
Modifier and Type | Method and Description |
---|---|
Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple7.clone() |
<T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple6.concat(T7 value)
Concatenate a value to this tuple.
|
<T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple6.concat(Tuple1<T7> tuple)
Concatenate a tuple to this tuple.
|
<T6,T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple5.concat(Tuple2<T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T5,T6,T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple4.concat(Tuple3<T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T4,T5,T6,T7> |
Tuple3.concat(Tuple4<T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5,T6,T7> |
Tuple2.concat(Tuple5<T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3,T4,T5,T6,T7> |
Tuple1.concat(Tuple6<T2,T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T1,T2,T3,T4,T5,T6,T7> |
Tuple0.concat(Tuple7<T1,T2,T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<U1> Tuple7<U1,T2,T3,T4,T5,T6,T7> |
Tuple7.map1(Function1<? super T1,? extends U1> function)
Apply attribute 1 as argument to a function and return a new tuple with the substituted argument.
|
<U2> Tuple7<T1,U2,T3,T4,T5,T6,T7> |
Tuple7.map2(Function1<? super T2,? extends U2> function)
Apply attribute 2 as argument to a function and return a new tuple with the substituted argument.
|
<U3> Tuple7<T1,T2,U3,T4,T5,T6,T7> |
Tuple7.map3(Function1<? super T3,? extends U3> function)
Apply attribute 3 as argument to a function and return a new tuple with the substituted argument.
|
<U4> Tuple7<T1,T2,T3,U4,T5,T6,T7> |
Tuple7.map4(Function1<? super T4,? extends U4> function)
Apply attribute 4 as argument to a function and return a new tuple with the substituted argument.
|
<U5> Tuple7<T1,T2,T3,T4,U5,T6,T7> |
Tuple7.map5(Function1<? super T5,? extends U5> function)
Apply attribute 5 as argument to a function and return a new tuple with the substituted argument.
|
<U6> Tuple7<T1,T2,T3,T4,T5,U6,T7> |
Tuple7.map6(Function1<? super T6,? extends U6> function)
Apply attribute 6 as argument to a function and return a new tuple with the substituted argument.
|
<U7> Tuple7<T1,T2,T3,T4,T5,T6,U7> |
Tuple7.map7(Function1<? super T7,? extends U7> function)
Apply attribute 7 as argument to a function and return a new tuple with the substituted argument.
|
static <T1,T2,T3,T4,T5,T6,T7> |
Tuple.tuple(T1 v1,
T2 v2,
T3 v3,
T4 v4,
T5 v5,
T6 v6,
T7 v7)
Construct a tuple of degree 7.
|
Modifier and Type | Method and Description |
---|---|
static <T,A1,A2,A3,A4,A5,A6,A7,D1,D2,D3,D4,D5,D6,D7> |
Tuple.collectors(java.util.stream.Collector<T,A1,D1> collector1,
java.util.stream.Collector<T,A2,D2> collector2,
java.util.stream.Collector<T,A3,D3> collector3,
java.util.stream.Collector<T,A4,D4> collector4,
java.util.stream.Collector<T,A5,D5> collector5,
java.util.stream.Collector<T,A6,D6> collector6,
java.util.stream.Collector<T,A7,D7> collector7)
Construct a tuple collector of degree 7.
|
static <T,A1,A2,A3,A4,A5,A6,A7,D1,D2,D3,D4,D5,D6,D7> |
Tuple.collectors(java.util.stream.Collector<T,A1,D1> collector1,
java.util.stream.Collector<T,A2,D2> collector2,
java.util.stream.Collector<T,A3,D3> collector3,
java.util.stream.Collector<T,A4,D4> collector4,
java.util.stream.Collector<T,A5,D5> collector5,
java.util.stream.Collector<T,A6,D6> collector6,
java.util.stream.Collector<T,A7,D7> collector7)
Construct a tuple collector of degree 7.
|
Modifier and Type | Method and Description |
---|---|
int |
Tuple7.compareTo(Tuple7<T1,T2,T3,T4,T5,T6,T7> other) |
<T1,T2,T3,T4,T5,T6,T7> |
Tuple0.concat(Tuple7<T1,T2,T3,T4,T5,T6,T7> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3,T4,T5,T6,T7,T8> |
Tuple1.concat(Tuple7<T2,T3,T4,T5,T6,T7,T8> tuple)
Concatenate a tuple to this tuple.
|
Constructor and Description |
---|
Tuple7(Tuple7<T1,T2,T3,T4,T5,T6,T7> tuple) |
Copyright © 2015. All Rights Reserved.