Package org.jooq

Interface SelectField<T>

    • Method Detail

      • getConverter

        Converter<?,​T> getConverter()
        The field's underlying Converter.

        By default, all fields reference an identity-converter Converter<T, T>. Custom data types may be obtained by a custom Converter placed on the generated TableField.

      • getType

        java.lang.Class<T> getType()
        The Java type of the field.
      • getDataType

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

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