This package contains jOOQ's public API.
-
static final <T1,
T2,
T3,
T4,
T5,
R>
@NotNull Function5<T1,T2,T3,T4,T5,R>
Functions.nullOnAllNull(Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> function)
A function that short circuits the argument function returning null
if all arguments are null
.
static final <T1,
T2,
T3,
T4,
T5,
R>
@NotNull Function5<T1,T2,T3,T4,T5,R>
Functions.nullOnAnyNull(Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> function)
A function that short circuits the argument function returning null
if any argument is null
.
static final <T1,
T2,
T3,
T4,
T5,
R extends Record5<T1,
T2,
T3,
T4,
T5>,
U>
RecordMapper<R,U>
Records.mapping(Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends U> function)
A convenience method to define a local
Record5
to custom type
RecordMapper
that can be used when projecting
Row
types in
SELECT
or
RETURNING
clauses.
A convenience method to define a local
Record5
to custom type
RecordMapper
that can be used when projecting
Row
types
in
SELECT
or
RETURNING
clauses.
static final <T1,
T2,
T3,
T4,
T5,
R>
@NotNull Function5<T1,T2,T3,T4,T5,R>
Functions.nullOnAllNull(Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> function)
A function that short circuits the argument function returning null
if all arguments are null
.
static final <T1,
T2,
T3,
T4,
T5,
R>
@NotNull Function5<T1,T2,T3,T4,T5,R>
Functions.nullOnAnyNull(Function5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> function)
A function that short circuits the argument function returning null
if any argument is null
.