Uses of Interface
org.jooq.Function1
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
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
. -
Uses of Function1 in org.jooq.impl
Modifier and TypeMethodDescriptionstatic <T> @NotNull Condition
DSL.arrayAllMatch
(Field<T[]> array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_ALL_MATCH
function.static <T> @NotNull Condition
DSL.arrayAllMatch
(T[] array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_ALL_MATCH
function.static <T> @NotNull Condition
DSL.arrayAnyMatch
(Field<T[]> array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_ANY_MATCH
function.static <T> @NotNull Condition
DSL.arrayAnyMatch
(T[] array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_ANY_MATCH
function.static <T> @NotNull Field
<T[]> DSL.arrayFilter
(Field<T[]> array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_FILTER
function.static <T> @NotNull Field
<T[]> DSL.arrayFilter
(T[] array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_FILTER
function.static <T,
U> @NotNull Field <U[]> TheARRAY_MAP
function.static <T,
U> @NotNull Field <U[]> TheARRAY_MAP
function.static <T> @NotNull Condition
DSL.arrayNoneMatch
(Field<T[]> array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_NONE_MATCH
function.static <T> @NotNull Condition
DSL.arrayNoneMatch
(T[] array, Function1<? super Field<T>, ? extends Condition> predicate) TheARRAY_NONE_MATCH
function.