Package | Description |
---|---|
org.jooq.lambda |
This package contains useful extensions for interoperation with Java 8's lambda expressions and
FunctionalInterface types. |
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 |
---|---|
static <T1,T2,T3> Seq<Tuple3<T1,T2,T3>> |
Seq.crossJoin(java.util.stream.Stream<T1> s1,
java.util.stream.Stream<T2> s2,
java.util.stream.Stream<T3> s3)
Cross join 3 streams into one.
|
static <T1,T2,T3> Seq<Tuple3<T1,T2,T3>> |
Seq.zip(java.util.stream.Stream<T1> s1,
java.util.stream.Stream<T2> s2,
java.util.stream.Stream<T3> s3)
Zip 3 streams into one.
|
Modifier and Type | Method and Description |
---|---|
default R |
Function3.apply(Tuple3<T1,T2,T3> args)
Apply this function to the arguments.
|
default Function5<T4,T5,T6,T7,T8,R> |
Function8.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default Function4<T4,T5,T6,T7,R> |
Function7.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default Function3<T4,T5,T6,R> |
Function6.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default Function2<T4,T5,R> |
Function5.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default Function1<T4,R> |
Function4.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default Function0<R> |
Function3.curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
Modifier and Type | Method and Description |
---|---|
Tuple3<T1,T2,T3> |
Tuple3.clone() |
<T3> Tuple3<T1,T2,T3> |
Tuple2.concat(T3 value)
Concatenate a value to this tuple.
|
<T3> Tuple3<T1,T2,T3> |
Tuple2.concat(Tuple1<T3> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3> Tuple3<T1,T2,T3> |
Tuple1.concat(Tuple2<T2,T3> tuple)
Concatenate a tuple to this tuple.
|
<T1,T2,T3> Tuple3<T1,T2,T3> |
Tuple0.concat(Tuple3<T1,T2,T3> tuple)
Concatenate a tuple to this tuple.
|
<U1> Tuple3<U1,T2,T3> |
Tuple3.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> Tuple3<T1,U2,T3> |
Tuple3.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> Tuple3<T1,T2,U3> |
Tuple3.map3(Function1<? super T3,? extends U3> function)
Apply attribute 3 as argument to a function and return a new tuple with the substituted argument.
|
static <T1,T2,T3> Tuple3<T1,T2,T3> |
Tuple.tuple(T1 v1,
T2 v2,
T3 v3)
Construct a tuple of degree 3.
|
Modifier and Type | Method and Description |
---|---|
static <T,A1,A2,A3,D1,D2,D3> |
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)
Construct a tuple collector of degree 3.
|
static <T,A1,A2,A3,D1,D2,D3> |
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)
Construct a tuple collector of degree 3.
|
Modifier and Type | Method and Description |
---|---|
int |
Tuple3.compareTo(Tuple3<T1,T2,T3> other) |
<T1,T2,T3> Tuple3<T1,T2,T3> |
Tuple0.concat(Tuple3<T1,T2,T3> tuple)
Concatenate a tuple to this tuple.
|
<T2,T3,T4> Tuple4<T1,T2,T3,T4> |
Tuple1.concat(Tuple3<T2,T3,T4> tuple)
Concatenate a tuple to this tuple.
|
<T3,T4,T5> Tuple5<T1,T2,T3,T4,T5> |
Tuple2.concat(Tuple3<T3,T4,T5> tuple)
Concatenate a tuple to this tuple.
|
<T4,T5,T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple3.concat(Tuple3<T4,T5,T6> 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.
|
<T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple5.concat(Tuple3<T6,T7,T8> tuple)
Concatenate a tuple to this tuple.
|
Constructor and Description |
---|
Tuple3(Tuple3<T1,T2,T3> tuple) |
Copyright © 2015. All Rights Reserved.