Module org.jooq
Package org.jooq

Interface Typed<T>

    • Method Detail

      • getConverter

        @NotNull
        @NotNull Converter<?,​T> getConverter()
        The object's underlying Converter.

        By default, all typed objects reference an identity-converter Converter<T, T>. If an implementation is generated, custom data types may be obtained by a custom Converter placed on the generated object.

      • getBinding

        @NotNull
        @NotNull Binding<?,​T> getBinding()
        The object's underlying Binding.
      • getType

        @NotNull
        @NotNull Class<T> getType()
        The Java type of the object.
      • getDataType

        @NotNull
        @NotNull DataType<T> getDataType()
        The type of this object (might not be dialect-specific).
      • getDataType

        @NotNull
        @NotNull DataType<T> getDataType​(Configuration configuration)
        The dialect-specific type of this object.