Uses of Interface
org.jooq.Function7
Packages that use Function7
-
Uses of Function7 in org.jooq
Modifier and TypeMethodDescriptionstatic final <T1,
T2, T3, T4, T5, T6, T7, R>
@NotNull Function7<T1,T2, T3, T4, T5, T6, T7, R> Functions.nullOnAllNull
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R> function) A function that short circuits the argument function returningnull
if all arguments arenull
.static final <T1,
T2, T3, T4, T5, T6, T7, R>
@NotNull Function7<T1,T2, T3, T4, T5, T6, T7, R> Functions.nullOnAnyNull
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R> function) A function that short circuits the argument function returningnull
if any argument isnull
.Modifier and TypeMethodDescriptionstatic final <T1,
T2, T3, T4, T5, T6, T7, R extends Record7<T1, T2, T3, T4, T5, T6, T7>, U>
RecordMapper<R,U> Records.mapping
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends U> function) Create aRecordMapper
that can map fromRecord7
to a user type in a type safe way.<U> @NotNull SelectField<U>
Row7.mapping
(Class<U> uType, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends U> function) A convenience method to define a localRecord7
to custom typeRecordMapper
that can be used when projectingRow
types inSELECT
orRETURNING
clauses.<U> @NotNull SelectField<U>
Row7.mapping
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends U> function) A convenience method to define a localRecord7
to custom typeRecordMapper
that can be used when projectingRow
types inSELECT
orRETURNING
clauses.static final <T1,
T2, T3, T4, T5, T6, T7, R>
@NotNull Function7<T1,T2, T3, T4, T5, T6, T7, R> Functions.nullOnAllNull
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R> function) A function that short circuits the argument function returningnull
if all arguments arenull
.static final <T1,
T2, T3, T4, T5, T6, T7, R>
@NotNull Function7<T1,T2, T3, T4, T5, T6, T7, R> Functions.nullOnAnyNull
(Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R> function) A function that short circuits the argument function returningnull
if any argument isnull
.