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 |
Function1.apply(Tuple1<T1> args)
Apply this function to the arguments.
|
Modifier and Type | Method and Description |
---|---|
Tuple1<T1> |
Tuple1.clone() |
<T1> Tuple1<T1> |
Tuple0.concat(T1 value)
Concatenate a value to this tuple.
|
<T1> Tuple1<T1> |
Tuple0.concat(Tuple1<T1> tuple)
Concatenate a tuple to this tuple.
|
<U1> Tuple1<U1> |
Tuple1.map1(Function1<? super T1,? extends U1> function)
Apply attribute 1 as argument to a function and return a new tuple with the substituted argument.
|
static <T1> Tuple1<T1> |
Tuple.tuple(T1 v1)
Construct a tuple of degree 1.
|
Modifier and Type | Method and Description |
---|---|
static <T,A1,D1> java.util.stream.Collector<T,Tuple1<A1>,Tuple1<D1>> |
Tuple.collectors(java.util.stream.Collector<T,A1,D1> collector1)
Construct a tuple collector of degree 1.
|
static <T,A1,D1> java.util.stream.Collector<T,Tuple1<A1>,Tuple1<D1>> |
Tuple.collectors(java.util.stream.Collector<T,A1,D1> collector1)
Construct a tuple collector of degree 1.
|
Modifier and Type | Method and Description |
---|---|
int |
Tuple1.compareTo(Tuple1<T1> other) |
<T1> Tuple1<T1> |
Tuple0.concat(Tuple1<T1> tuple)
Concatenate a tuple to this tuple.
|
<T2> Tuple2<T1,T2> |
Tuple1.concat(Tuple1<T2> tuple)
Concatenate a tuple to this tuple.
|
<T3> Tuple3<T1,T2,T3> |
Tuple2.concat(Tuple1<T3> tuple)
Concatenate a tuple to this tuple.
|
<T4> Tuple4<T1,T2,T3,T4> |
Tuple3.concat(Tuple1<T4> tuple)
Concatenate a tuple to this tuple.
|
<T5> Tuple5<T1,T2,T3,T4,T5> |
Tuple4.concat(Tuple1<T5> tuple)
Concatenate a tuple to this tuple.
|
<T6> Tuple6<T1,T2,T3,T4,T5,T6> |
Tuple5.concat(Tuple1<T6> tuple)
Concatenate a tuple to this tuple.
|
<T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> |
Tuple6.concat(Tuple1<T7> tuple)
Concatenate a tuple to this tuple.
|
<T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple7.concat(Tuple1<T8> tuple)
Concatenate a tuple to this tuple.
|
Constructor and Description |
---|
Tuple1(Tuple1<T1> tuple) |
Copyright © 2015. All Rights Reserved.