Uses of Interface
org.jooq.Lambda1
-
Uses of Lambda1 in org.jooq.impl
Modifier and TypeMethodDescriptionQOM.ArrayMap.$mapper()
The function that defines the mapping between source elements and result elements.QOM.ArrayAllMatch.$predicate()
The predicate that must be true for all array elements.QOM.ArrayAnyMatch.$predicate()
The predicate that must be true for at least 1 array elementQOM.ArrayFilter.$predicate()
A predicate defining which elements to keep in the array.QOM.ArrayNoneMatch.$predicate()
The predicate that must be false for all elements.DSL.lambda
(Q1 arg1, QR result) Modifier and TypeMethodDescriptiondefault @NotNull QOM.ArrayMap
<T, U> The function that defines the mapping between source elements and result elements.default @NotNull QOM.ArrayAllMatch
<T> QOM.ArrayAllMatch.$predicate
(Lambda1<Field<T>, Condition> newPredicate) The predicate that must be true for all array elements.default @NotNull QOM.ArrayAnyMatch
<T> QOM.ArrayAnyMatch.$predicate
(Lambda1<Field<T>, Condition> newPredicate) The predicate that must be true for at least 1 array elementdefault @NotNull QOM.ArrayFilter
<T> QOM.ArrayFilter.$predicate
(Lambda1<Field<T>, Condition> newPredicate) A predicate defining which elements to keep in the array.default @NotNull QOM.ArrayNoneMatch
<T> QOM.ArrayNoneMatch.$predicate
(Lambda1<Field<T>, Condition> newPredicate) The predicate that must be false for all elements.static <T> @NotNull Condition
DSL.arrayAllMatch
(Field<T[]> array, Lambda1<Field<T>, Condition> predicate) TheARRAY_ALL_MATCH
function.static <T> @NotNull Condition
DSL.arrayAllMatch
(T[] array, Lambda1<Field<T>, Condition> predicate) TheARRAY_ALL_MATCH
function.static <T> @NotNull Condition
DSL.arrayAnyMatch
(Field<T[]> array, Lambda1<Field<T>, Condition> predicate) TheARRAY_ANY_MATCH
function.static <T> @NotNull Condition
DSL.arrayAnyMatch
(T[] array, Lambda1<Field<T>, Condition> predicate) TheARRAY_ANY_MATCH
function.static <T> @NotNull Field
<T[]> DSL.arrayFilter
(Field<T[]> array, Lambda1<Field<T>, Condition> predicate) TheARRAY_FILTER
function.static <T> @NotNull Field
<T[]> DSL.arrayFilter
(T[] array, Lambda1<Field<T>, 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, Lambda1<Field<T>, Condition> predicate) TheARRAY_NONE_MATCH
function.static <T> @NotNull Condition
DSL.arrayNoneMatch
(T[] array, Lambda1<Field<T>, Condition> predicate) TheARRAY_NONE_MATCH
function.