Uses of Interface
org.jooq.Function1
Packages that use Function1
-
Uses of Function1 in org.jooq
Modifier and TypeMethodDescriptionstatic final <T1,
R> @NotNull Function1 <T1, R> Functions.nullOnAllNull
(Function1<? super T1, ? extends R> function) A function that short circuits the argument function returningnull
if all arguments arenull
.static final <T1,
R> @NotNull Function1 <T1, R> Functions.nullOnAnyNull
(Function1<? super T1, ? extends R> function) A function that short circuits the argument function returningnull
if any argument isnull
.Modifier and TypeMethodDescriptionstatic final <T1,
R extends Record1<T1>, U>
RecordMapper<R, U> Create aRecordMapper
that can map fromRecord1
to a user type in a type safe way.<U> @NotNull SelectField
<U> A convenience method to define a localRecord1
to custom typeRecordMapper
that can be used when projectingRow
types inSELECT
orRETURNING
clauses.<U> @NotNull SelectField
<U> A convenience method to define a localRecord1
to custom typeRecordMapper
that can be used when projectingRow
types inSELECT
orRETURNING
clauses.static final <T1,
R> @NotNull Function1 <T1, R> Functions.nullOnAllNull
(Function1<? super T1, ? extends R> function) A function that short circuits the argument function returningnull
if all arguments arenull
.static final <T1,
R> @NotNull Function1 <T1, R> Functions.nullOnAnyNull
(Function1<? super T1, ? extends R> function) A function that short circuits the argument function returningnull
if any argument isnull
.