Uses of Interface
org.jooq.Function6

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

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