Uses of Interface
org.jooq.Function9

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

    Methods in org.jooq with parameters of type Function9
    Modifier and Type
    Method
    Description
    static <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ R extends Record9<T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9>,​ U>
    RecordMapper<R,​U>
    Records.mapping​(Function9<? super T1,​? super T2,​? super T3,​? super T4,​? super T5,​? super T6,​? super T7,​? super T8,​? super T9,​? extends U> function)
    Create a RecordMapper that can map from Record9 to a user type in a type safe way.
    <U> @NotNull SelectField<U>
    Row9.mapping​(Class<U> uType, Function9<? super T1,​? super T2,​? super T3,​? super T4,​? super T5,​? super T6,​? super T7,​? super T8,​? super T9,​? extends U> function)
    A convenience method to define a local Record9 to custom type RecordMapper that can be used when projecting Row types in SELECT or RETURNING clauses.
    <U> @NotNull SelectField<U>
    Row9.mapping​(Function9<? super T1,​? super T2,​? super T3,​? super T4,​? super T5,​? super T6,​? super T7,​? super T8,​? super T9,​? extends U> function)
    A convenience method to define a local Record9 to custom type RecordMapper that can be used when projecting Row types in SELECT or RETURNING clauses.