Uses of Interface
org.jooq.Function2

Packages that use Function2
Package
Description
This package contains jOOQ's public API.
  • Uses of Function2 in org.jooq

    Methods in org.jooq that return Function2
    Modifier and Type
    Method
    Description
    static final <T1, T2, R>
    @NotNull Function2<T1,T2,R>
    Functions.nullOnAllNull(Function2<? super T1,? super T2,? extends R> function)
    A function that short circuits the argument function returning null if all arguments are null.
    static final <T1, T2, R>
    @NotNull Function2<T1,T2,R>
    Functions.nullOnAnyNull(Function2<? super T1,? super T2,? extends R> function)
    A function that short circuits the argument function returning null if any argument is null.
    Methods in org.jooq with parameters of type Function2
    Modifier and Type
    Method
    Description
    static final <T1, T2, R extends Record2<T1, T2>, U>
    RecordMapper<R,U>
    Records.mapping(Function2<? super T1,? super T2,? extends U> function)
    Create a RecordMapper that can map from Record2 to a user type in a type safe way.
    <U> @NotNull SelectField<U>
    Row2.mapping(Class<U> uType, Function2<? super T1,? super T2,? extends U> function)
    A convenience method to define a local Record2 to custom type RecordMapper that can be used when projecting Row types in SELECT or RETURNING clauses.
    <U> @NotNull SelectField<U>
    Row2.mapping(Function2<? super T1,? super T2,? extends U> function)
    A convenience method to define a local Record2 to custom type RecordMapper that can be used when projecting Row types in SELECT or RETURNING clauses.
    static final <T1, T2, R>
    @NotNull Function2<T1,T2,R>
    Functions.nullOnAllNull(Function2<? super T1,? super T2,? extends R> function)
    A function that short circuits the argument function returning null if all arguments are null.
    static final <T1, T2, R>
    @NotNull Function2<T1,T2,R>
    Functions.nullOnAnyNull(Function2<? super T1,? super T2,? extends R> function)
    A function that short circuits the argument function returning null if any argument is null.