Module org.jooq
Package org.jooq

Interface ConverterProvider

  • All Known Implementing Classes:
    DefaultConverterProvider
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @Deprecated
    @FunctionalInterface
    public interface ConverterProvider
    Deprecated.
    - This API is still EXPERIMENTAL. Do not use yet
    A ConverterProvider providers Converter implementations for any combination of types <T> and <U>.
    Author:
    Lukas Eder
    • Method Detail

      • provide

        <T,​U> Converter<T,​U> provide​(Class<T> tType,
                                                 Class<U> uType)
        Deprecated.
        Provide a converter that can convert between <T> and <U> types.