Uses of Interface
org.jooq.DataType

Packages that use DataType
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains classes related to the SQLDialect.ACCESS dialect family.
This package contains classes related to the SQLDialect.ASE dialect family.
This package contains classes related to the SQLDialect.AURORA_MYSQL dialect family.
This package contains classes related to the SQLDialect.AURORA_POSTGRES dialect family.
This package contains classes related to the SQLDialect.BIGQUERY dialect family.
This package contains classes related to the SQLDialect.COCKROACHDB dialect family.
This package contains classes related to the SQLDialect.CUBRID dialect family.
This package contains classes related to the SQLDialect.DB2 dialect family.
This package contains classes related to the SQLDialect.DERBY dialect family.
This package contains classes related to the SQLDialect.EXASOL dialect family.
This package contains classes related to the SQLDialect.FIREBIRD dialect family.
This package contains classes related to the SQLDialect.H2 dialect family.
This package contains classes related to the SQLDialect.HANA dialect family.
This package contains classes related to the SQLDialect.HSQLDB dialect family.
This package contains classes related to the SQLDialect.IGNITE dialect family.
This package contains classes related to the SQLDialect.INFORMIX dialect family.
This package contains classes related to the SQLDialect.INGRES dialect family.
This package contains classes related to the SQLDialect.MARIADB dialect family.
This package contains classes related to the SQLDialect.MEMSQL dialect family.
This package contains classes related to the SQLDialect.MYSQL dialect family.
This package contains classes related to the SQLDialect.ORACLE dialect family.
This package contains classes related to the SQLDialect.POSTGRES dialect family.
This package contains classes related to the SQLDialect.REDSHIFT dialect family.
This package contains classes related to the SQLDialect.SNOWFLAKE dialect family.
This package contains classes related to the SQLDialect.SQLDATAWAREHOUSE dialect family.
This package contains classes related to the SQLDialect.SQLITE dialect family.
This package contains classes related to the SQLDialect.SQLSERVER dialect family.
This package contains classes related to the SQLDialect.SYBASE dialect family.
This package contains classes related to the SQLDialect.TERADATA dialect family.
This package contains classes related to the SQLDialect.VERTICA dialect family.
This package contains classes related to the SQLDialect.YUGABYTEDB dialect family.
  • Uses of DataType in org.jooq

    Methods in org.jooq that return DataType
    Modifier and Type
    Method
    Description
    @NotNull DataType<T>
    Typed.$dataType()
    Experimental query object model accessor method, see also QOM.
    @NotNull DataType<T[]>
    DataType.array()
    A convenient short for form getArrayDataType() for DSL usage
    <A extends ArrayRecord<?>>
    @NotNull DataType<A>
    DataType.asArrayDataType(Class<A> arrayDataType)
    Retrieve the data type for an Oracle-style ARRAY of this data type.
    <A extends AssociativeArrayRecord<?, ?>>
    @NotNull DataType<A>
    DataType.asAssociativeArrayDataType(Class<A> arrayDataType)
    Retrieve the data type for an Oracle-style associative array of this data type.
    default <U> @NotNull DataType<U>
    DataType.asConvertedDataType(Class<U> toType, Function<? super T,? extends U> from, Function<? super U,? extends T> to)
    Convenience method for converting this type using Converter.of(Class, Class, Function, Function).
    <U> @NotNull DataType<U>
    DataType.asConvertedDataType(Binding<? super T,U> binding)
    Retrieve the data type for a given binding.
    <U> @NotNull DataType<U>
    DataType.asConvertedDataType(Converter<? super T,U> converter)
    Retrieve the data type for a given converter.
    default <U> @NotNull DataType<U>
    DataType.asConvertedDataTypeFrom(Class<U> toType, Function<? super T,? extends U> from)
    Convenience method for converting this type to a read-only type using Converter.from(Class, Class, Function).
    default <U> @NotNull DataType<U>
    DataType.asConvertedDataTypeFrom(Function<? super T,? extends U> from)
    Convenience method for converting this type to a read-only type using Converter.from(Class, Class, Function).
    default <U> @NotNull DataType<U>
    DataType.asConvertedDataTypeTo(Class<U> toType, Function<? super U,? extends T> to)
    Convenience method for converting this type to a write-only type using Converter.to(Class, Class, Function).
    default <U> @NotNull DataType<U>
    DataType.asConvertedDataTypeTo(Function<? super U,? extends T> to)
    Convenience method for converting this type to a write-only type using Converter.to(Class, Class, Function).
    <E extends EnumType>
    @NotNull DataType<E>
    DataType.asEnumDataType(Class<E> enumDataType)
    Retrieve the data type for a given enum data type.
    @NotNull DataType<T>
    DataType.characterSet(CharacterSet characterSet)
    Return a new data type like this, with a new character set.
    @NotNull DataType<T>
    DataType.collation(Collation collation)
    Return a new data type like this, with a new collation.
    @Nullable DataType<?>
    Fields.dataType(int index)
    Get the field data type for a given field index, or null if no field is available at the index.
    @Nullable DataType<?>
    Fields.dataType(String name)
    Get the field data type for a given qualified field name, or null if no field is known to this type by this name.
    @Nullable DataType<?>
    Fields.dataType(Name name)
    Get the field data type for a given qualified field name, or null if no field is known to this type by this name.
    @NotNull DataType<?> @NotNull []
    Fields.dataTypes()
    Get an array of field data types for this type.
    @NotNull DataType<T>
    DataType.default_(Field<T> defaultValue)
    Specify an expression to be applied as the DEFAULT value for this data type.
    @NotNull DataType<T>
    DataType.default_(T defaultValue)
    Specify an expression to be applied as the DEFAULT value for this data type.
    @NotNull DataType<T>
    DataType.defaulted(boolean defaulted)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#3852] - 3.8.0 - Use defaultValue(Field) instead.
    @NotNull DataType<T>
    DataType.defaultValue(Field<T> defaultValue)
    Specify an expression to be applied as the DEFAULT value for this data type.
    @NotNull DataType<T>
    DataType.defaultValue(T defaultValue)
    Specify an expression to be applied as the DEFAULT value for this data type.
    @NotNull DataType<T>
    DataType.generatedAlwaysAs(Field<T> generatedAlwaysAsValue)
    Set the computed column expression of this data type to a constant expression.
    @NotNull DataType<T>
    DataType.generatedAlwaysAs(Generator<?,?,T> generatedAlwaysAsValue)
    Set the computed column expression of this data type to a dynamic expression.
    @NotNull DataType<T>
    DataType.generatedAlwaysAs(T generatedAlwaysAsValue)
    Set the computed column expression of this data type to a constant value.
    @NotNull DataType<T>
    DataType.generationLocation(QOM.GenerationLocation generationOption)
    Set the generationLocation() of the computed column expression.
    @NotNull DataType<T>
    DataType.generationOption(QOM.GenerationOption generationOption)
    Set the generationOption() of the computed column expression.
    @NotNull DataType<?>
    Retrieve the Java component data type if this is an ARRAY type, or this, otherwise.
    @Nullable DataType<?>
    Retrieve the Java component data type if this is an ARRAY type, or null, otherwise.
    @NotNull DataType<T[]>
    DataType.getArrayDataType()
    Retrieve the data type for an ARRAY of this data type.
    ArrayOrAssociativeArrayRecord.getArrayType()
    Get the data type of the array.
    ArrayOrAssociativeArrayRecord.getDataType()
    Get the data type of the array's base type.
    @NotNull DataType<T>
    DataType.getDataType(Configuration configuration)
    The dialect-specific data type representing this data type.
    @NotNull DataType<R>
    RecordQualifier.getDataType()
    The UDT's or Table's data type as known to the database.
    @NotNull DataType<T>
    Typed.getDataType()
    The type of this object (might not be dialect-specific).
    @NotNull DataType<T>
    Typed.getDataType(Configuration configuration)
    The dialect-specific type of this object.
    AssociativeArrayRecord.getIndexDataType()
    Get the data type of the array's index type.
    @Nullable DataType<T>
    DataType.getSQLDataType()
    Get the standard SQL data type of this (dialect-specific) data type if available.
    @NotNull DataType<T>
    DataType.identity(boolean identity)
    Return a new data type like this, with a new identity flag.
    @NotNull DataType<T>
    DataType.length(int length)
    Return a new data type like this, with a new length value.
    @NotNull DataType<T>
    DataType.notNull()
    Synonym for nullable(boolean), passing false as an argument.
    @NotNull DataType<T>
    DataType.null_()
    Synonym for nullable(boolean), passing true as an argument.
    @NotNull DataType<T>
    DataType.nullability(Nullability nullability)
    Return a new data type like this, with a new nullability.
    @NotNull DataType<T>
    DataType.nullable(boolean nullable)
    Return a new data type like this, with a new nullability.
    @NotNull DataType<?>
    ParseContext.parseDataType()
    Parse a DataType expression or fail if the current expression is not a data type.
    @NotNull DataType<T>
    DataType.precision(int precision)
    Return a new data type like this, with a new precision value.
    @NotNull DataType<T>
    DataType.precision(int precision, int scale)
    Return a new data type like this, with a new precision and scale value.
    @NotNull DataType<T>
    DataType.readonly(boolean readonly)
    Return a new data type like this, with a new readonly attribute.
    @NotNull DataType<T>
    DataType.scale(int scale)
    Return a new data type like this, with a new scale value.
    @NotNull DataType<T>
    DataType.stored()
    Set the generationOption() of the computed column expression to QOM.GenerationOption.STORED.
    @NotNull DataType<T>
    DataType.virtual()
    Set the generationOption() of the computed column expression to QOM.GenerationOption.VIRTUAL.
    Methods in org.jooq with parameters of type DataType
    Modifier and Type
    Method
    Description
    AlterTableStep.add(String field, DataType<?> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    <T> @NotNull AlterTableAddStep
    AlterTableStep.add(Field<T> field, DataType<T> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    AlterTableStep.add(Name field, DataType<?> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    AlterTableStep.addColumn(String field, DataType<?> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    <T> @NotNull AlterTableAddStep
    AlterTableStep.addColumn(Field<T> field, DataType<T> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    AlterTableStep.addColumn(Name field, DataType<?> type)
    Add an ADD COLUMN clause to the ALTER TABLE statement.
    AlterTableStep.addColumnIfNotExists(String field, DataType<?> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    <T> @NotNull AlterTableAddStep
    AlterTableStep.addColumnIfNotExists(Field<T> field, DataType<T> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    AlterTableStep.addColumnIfNotExists(Name field, DataType<?> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    AlterTableStep.addIfNotExists(String field, DataType<?> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    <T> @NotNull AlterTableAddStep
    AlterTableStep.addIfNotExists(Field<T> field, DataType<T> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    AlterTableStep.addIfNotExists(Name field, DataType<?> type)
    Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE statement.
    <T> @NotNull CreateDomainDefaultStep<T>
    CreateDomainAsStep.as(DataType<T> dataType)
    Add the AS clause to the CREATE DOMAIN statement.
    <Z> @NotNull Field<Z>
    Field.cast(DataType<Z> type)
    Cast this field to a dialect-specific data type.
    <Z> @NotNull Field<Z>
    Field.coerce(DataType<Z> type)
    Coerce this field to a dialect-specific data type.
    CreateTableElementListStep.column(String field, DataType<?> type)
    Add the COLUMN clause to the CREATE TABLE statement.
    CreateTableElementListStep.column(Field<?> field, DataType<?> type)
    Add the COLUMN clause to the CREATE TABLE statement.
    CreateTableElementListStep.column(Name field, DataType<?> type)
    Add the COLUMN clause to the CREATE TABLE statement.
    JSONTableColumnsFirstStep.column(String name, DataType<?> type)
    Add a column to the COLUMNS clause of the JSON_TABLE expression.
    JSONTableColumnsFirstStep.column(Field<?> name, DataType<?> type)
    Add a column to the COLUMNS clause of the JSON_TABLE expression.
    JSONTableColumnsFirstStep.column(Name name, DataType<?> type)
    Add a column to the COLUMNS clause of the JSON_TABLE expression.
    XMLTableColumnsFirstStep.column(String name, DataType<?> type)
    Add a column to the COLUMNS clause of the XMLTABLE expression.
    XMLTableColumnsFirstStep.column(Field<?> name, DataType<?> type)
    Add a column to the COLUMNS clause of the XMLTABLE expression.
    XMLTableColumnsFirstStep.column(Name name, DataType<?> type)
    Add a column to the COLUMNS clause of the XMLTABLE expression.
    @NotNull Result<Record>
    DSLContext.fetch(ResultSet rs, DataType<?>... types)
    Fetch all data from a JDBC ResultSet and transform it to a jOOQ Result.
    DSLContext.fetchAsync(ResultSet rs, DataType<?>... types)
    Fetch results in a new CompletionStage.
    DSLContext.fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
    Fetch results in a new CompletionStage that is asynchronously completed by a task running in the given executor.
    @NotNull Cursor<Record>
    DSLContext.fetchLazy(ResultSet rs, DataType<?>... types)
    Wrap a JDBC ResultSet into a jOOQ Cursor.
    @Nullable Record
    DSLContext.fetchOne(ResultSet rs, DataType<?>... types)
    Fetch a record from a JDBC ResultSet and transform it to a jOOQ Record.
    @NotNull Optional<Record>
    DSLContext.fetchOptional(ResultSet rs, DataType<?>... types)
    Fetch a record from a JDBC ResultSet and transform it to a jOOQ Record.
    <T> @NotNull Optional<T>
    DSLContext.fetchOptionalValue(ResultSet rs, DataType<T> type)
    Fetch a record from a JDBC ResultSet and return the only contained value.
    @NotNull Record
    DSLContext.fetchSingle(ResultSet rs, DataType<?>... types)
    Fetch a record from a JDBC ResultSet and transform it to a jOOQ Record.
    @NotNull Stream<Record>
    DSLContext.fetchStream(ResultSet rs, DataType<?>... types)
    Wrap a JDBC ResultSet into a jOOQ Stream.
    <T> T
    DSLContext.fetchValue(ResultSet rs, DataType<T> type)
    Fetch a record from a JDBC ResultSet and return the only contained value.
    <T> @NotNull List<T>
    DSLContext.fetchValues(ResultSet rs, DataType<T> type)
    Fetch a result from a JDBC ResultSet and return the only contained column's values.
    <T> @Nullable Field<T>
    Fields.field(int index, DataType<T> dataType)
    Get a field known to this type by index coerced to dataType, or null if no field is available at the index.
    <T> @Nullable Field<T>
    Fields.field(String name, DataType<T> dataType)
    Get a field known to this type by unqualified name coerced to dataType, or null if no field is known to this type by this name.
    <T> @Nullable Field<T>
    Fields.field(Name name, DataType<T> dataType)
    Get a field known to this type by qualified name coerced to dataType, or null if no field is known to this type by this name.
    JSONArrayAggReturningStep.returning(DataType<?> returning)
    Add a RETURNING clause to the JSON_ARRAYAGG function.
    @NotNull Field<T>
    JSONArrayReturningStep.returning(DataType<?> returning)
    Add the RETURNING clause to the JSON ARRAY function.
    JSONObjectAggReturningStep.returning(DataType<?> returning)
    Add a RETURNING clause to the JSON_ARRAYAGG function.
    @NotNull Field<T>
    JSONObjectReturningStep.returning(DataType<?> returning)
    Add the RETURNING clause to the JSON OBJECT function.
    @NotNull Field<T>
    JSONValueReturningStep.returning(DataType<?> returning)
    Add the RETURNING clause to the JSON VALUE function.
    CreateFunctionReturnsStep.returns(DataType<?> returns)
    Add the RETURNS clause to the CREATE FUNCTION statement.
    AlterTableAlterStep.set(DataType<?> type)
    Specify a new column data type.
  • Uses of DataType in org.jooq.impl

    Classes in org.jooq.impl that implement DataType
    Modifier and Type
    Class
    Description
    class 
    An internal marker subtype of DefaultDataType, to be used only by built-in data types in SQLDataType and dialect specific data type classes, such as e.g.
    class 
    A common base class for data types.
    Fields in org.jooq.impl declared as DataType
    Modifier and Type
    Field
    Description
    static final DataType<Long>
    SQLDataType.BIGINT
    The Types.BIGINT type.
    static final DataType<ULong>
    SQLDataType.BIGINTUNSIGNED
    The unsigned Types.BIGINT type.
    static final DataType<byte[]>
    SQLDataType.BINARY
    The Types.BINARY type.
    static final DataType<Boolean>
    SQLDataType.BIT
    The Types.BIT type.
    static final DataType<byte[]>
    SQLDataType.BLOB
    The Types.BLOB type.
    static final DataType<Boolean>
    SQLDataType.BOOLEAN
    The Types.BOOLEAN type.
    static final DataType<String>
    SQLDataType.CHAR
    The Types.CHAR type.
    static final DataType<String>
    SQLDataType.CLOB
    The Types.CLOB type.
    static final DataType<Date>
    SQLDataType.DATE
    The Types.DATE type.
    static final DataType<BigDecimal>
    SQLDataType.DECIMAL
    The Types.DECIMAL type.
    static final DataType<BigInteger>
    SQLDataType.DECIMAL_INTEGER
    The zero-scale Types.DECIMAL type.
    static final DataType<Double>
    SQLDataType.DOUBLE
    The Types.DOUBLE type.
    static final DataType<Double>
    SQLDataType.FLOAT
    The Types.FLOAT type.
    static final DataType<Geography>
    SQLDataType.GEOGRAPHY
    The Geography type.
    static final DataType<Geometry>
    SQLDataType.GEOMETRY
    The Geometry type.
    static final DataType<Instant>
    SQLDataType.INSTANT
    A Types.TIMESTAMP_WITH_TIMEZONE type that uses UTC as time zone.
    static final DataType<Integer>
    SQLDataType.INTEGER
    The Types.INTEGER type.
    static final DataType<UInteger>
    SQLDataType.INTEGERUNSIGNED
    The unsigned Types.INTEGER type.
    static final DataType<YearToSecond>
    SQLDataType.INTERVAL
    A vendor specific INTERVAL YEAR TO SECOND data type, which combines SQLDataType.INTERVALYEARTOMONTH and SQLDataType.INTERVALDAYTOSECOND.
    static final DataType<DayToSecond>
    The SQL standard INTERVAL DAY TO SECOND data type.
    static final DataType<YearToMonth>
    The SQL standard INTERVAL YEAR TO MONTH data type.
    static final DataType<JSON>
    SQLDataType.JSON
    The JSON type.
    static final DataType<JSONB>
    SQLDataType.JSONB
    The JSONB type.
    static final DataType<LocalDate>
    SQLDataType.LOCALDATE
    The Types.DATE type.
    static final DataType<LocalDateTime>
    SQLDataType.LOCALDATETIME
    The Types.TIMESTAMP type.
    static final DataType<LocalTime>
    SQLDataType.LOCALTIME
    The Types.TIME type.
    static final DataType<String>
    SQLDataType.LONGNVARCHAR
    static final DataType<byte[]>
    SQLDataType.LONGVARBINARY
    static final DataType<String>
    SQLDataType.LONGVARCHAR
    static final DataType<String>
    SQLDataType.NCHAR
    The Types.NCHAR type.
    static final DataType<String>
    SQLDataType.NCLOB
    The Types.NCLOB type.
    static final DataType<BigDecimal>
    SQLDataType.NUMERIC
    The Types.NUMERIC type.
    static final DataType<String>
    SQLDataType.NVARCHAR
    The Types.NVARCHAR type.
    static final DataType<OffsetDateTime>
    SQLDataType.OFFSETDATETIME
    static final DataType<OffsetTime>
    SQLDataType.OFFSETTIME
    static final DataType<Object>
    SQLDataType.OTHER
    The Types.OTHER type.
    static final DataType<Float>
    SQLDataType.REAL
    The Types.REAL type.
    static final DataType<Record>
    SQLDataType.RECORD
    The Types.STRUCT type.
    static final DataType<Result<Record>>
    SQLDataType.RESULT
    The ResultSet type.
    static final DataType<RowId>
    SQLDataType.ROWID
    The Types.ROWID type.
    static final DataType<Short>
    SQLDataType.SMALLINT
    The Types.SMALLINT type.
    static final DataType<UShort>
    SQLDataType.SMALLINTUNSIGNED
    The unsigned Types.SMALLINT type.
    static final DataType<Time>
    SQLDataType.TIME
    The Types.TIME type.
    static final DataType<Timestamp>
    SQLDataType.TIMESTAMP
    The Types.TIMESTAMP type.
    static final DataType<OffsetDateTime>
    static final DataType<OffsetTime>
    SQLDataType.TIMEWITHTIMEZONE
    static final DataType<Byte>
    SQLDataType.TINYINT
    The Types.TINYINT type.
    static final DataType<UByte>
    SQLDataType.TINYINTUNSIGNED
    The unsigned Types.TINYINT type.
    static final DataType<UUID>
    SQLDataType.UUID
    The UUID type.
    static final DataType<byte[]>
    SQLDataType.VARBINARY
    The Types.VARBINARY type.
    static final DataType<String>
    SQLDataType.VARCHAR
    The Types.VARCHAR type.
    static final DataType<XML>
    SQLDataType.XML
    The XML type.
    static final DataType<Year>
    SQLDataType.YEAR
    A Types.SMALLINT type that represents a year.
    Methods in org.jooq.impl that return DataType
    Modifier and Type
    Method
    Description
    @NotNull DataType<T>
    QOM.CreateDomain.$dataType()
     
    default @Nullable DataType<?>
    QOM.JSONArray.$returning()
     
    @Nullable DataType<?>
    QOM.JSONArrayAgg.$returning()
     
    default @Nullable DataType<?>
    QOM.JSONObject.$returning()
     
    @Nullable DataType<?>
    QOM.JSONObjectAgg.$returning()
     
    @Nullable DataType<?>
    QOM.CreateFunction.$returns()
     
    default @NotNull DataType<T>
    QOM.JSONArray.$type()
     
    default @NotNull DataType<T>
    QOM.JSONObject.$type()
     
    default @NotNull DataType<T>
    QOM.XMLSerialize.$type()
     
    static final DataType<byte[]>
    SQLDataType.BINARY(int length)
    The Types.BINARY type.
    static final DataType<byte[]>
    SQLDataType.BLOB(int length)
    The Types.BLOB type.
    static final DataType<String>
    SQLDataType.CHAR(int length)
    The Types.CHAR type.
    static final DataType<String>
    SQLDataType.CLOB(int length)
    The Types.CLOB type.
    static final DataType<BigDecimal>
    SQLDataType.DECIMAL(int precision)
    The Types.DECIMAL type.
    static final DataType<BigDecimal>
    SQLDataType.DECIMAL(int precision, int scale)
    The Types.DECIMAL type.
    static final DataType<BigInteger>
    SQLDataType.DECIMAL_INTEGER(int precision)
    The zero-scale Types.DECIMAL type.
    final DataType<?>
    ArrayRecordImpl.getArrayType()
     
    final DataType<?>
    AssociativeArrayRecordImpl.getArrayType()
     
    final DataType<T>
    ArrayRecordImpl.getDataType()
     
    final DataType<V>
    AssociativeArrayRecordImpl.getDataType()
     
    final DataType<T>
    DefaultDataType.getDataType(Configuration configuration)
     
    static final DataType<?>
    DefaultDataType.getDataType(SQLDialect dialect, int sqlType)
     
    static final <T> DataType<T>
    DefaultDataType.getDataType(SQLDialect dialect, Class<T> type)
     
    static final <T> DataType<T>
    DefaultDataType.getDataType(SQLDialect dialect, Class<T> type, DataType<T> fallbackDataType)
     
    static final DataType<?>
    DefaultDataType.getDataType(SQLDialect dialect, String typeName)
     
    static final DataType<?>
    DefaultDataType.getDataType(SQLDialect dialect, String t, int p, int s)
    Convert a type name (using precision and scale) into a Java class
    static final DataType<?>
    DefaultDataType.getDataType(SQLDialect dialect, String t, int p, int s, boolean forceIntegerTypesOnZeroScaleDecimals)
    Convert a type name (using precision and scale) into a Java class
    static final DataType<?>
    DefaultDataType.getDataType(SQLDialect dialect, SQLType sqlType)
     
    static <T> @NotNull DataType<T>
    DSL.getDataType(Class<T> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - 3.11.0 - [#7483] - The (indirect) use of the internal static data type registry is not recommended.
    final DataType<R>
    UDTImpl.getDataType()
     
    static final DataType<Object>
    DefaultDataType.getDefaultDataType(String typeName)
     
    static final DataType<Object>
    DefaultDataType.getDefaultDataType(SQLDialect dialect, String typeName)
     
    final DataType<K>
    AssociativeArrayRecordImpl.getIndexDataType()
     
    final DataType<T>
    DefaultDataType.getSQLDataType()
     
    static final DataType<Instant>
    SQLDataType.INSTANT(int precision)
    A Types.TIMESTAMP_WITH_TIMEZONE type that uses UTC as time zone.
    static final DataType<LocalDateTime>
    SQLDataType.LOCALDATETIME(int precision)
    The Types.TIMESTAMP type.
    static final DataType<LocalTime>
    SQLDataType.LOCALTIME(int precision)
    The Types.TIME type.
    static final DataType<String>
    SQLDataType.LONGNVARCHAR(int length)
    static final DataType<byte[]>
    SQLDataType.LONGVARBINARY(int length)
    static final DataType<String>
    SQLDataType.LONGVARCHAR(int length)
    static final DataType<String>
    SQLDataType.NCHAR(int length)
    The Types.NCHAR type.
    static final DataType<String>
    SQLDataType.NCLOB(int length)
    The Types.NCLOB type.
    protected static <T> DataType<T>
    DSL.nullSafeDataType(Field<T> field)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11092] - 3.15.0 - This method will be removed without public replacement.
    static final DataType<BigDecimal>
    SQLDataType.NUMERIC(int precision)
    The Types.NUMERIC type.
    static final DataType<BigDecimal>
    SQLDataType.NUMERIC(int precision, int scale)
    The Types.NUMERIC type.
    static final DataType<String>
    SQLDataType.NVARCHAR(int length)
    The Types.NVARCHAR type.
    static final DataType<OffsetDateTime>
    SQLDataType.OFFSETDATETIME(int precision)
    static final DataType<OffsetTime>
    SQLDataType.OFFSETTIME(int precision)
    static final DataType<Time>
    SQLDataType.TIME(int precision)
    The Types.TIME type.
    static final DataType<Timestamp>
    SQLDataType.TIMESTAMP(int precision)
    The Types.TIMESTAMP type.
    static final DataType<OffsetDateTime>
    SQLDataType.TIMESTAMPWITHTIMEZONE(int precision)
    static final DataType<OffsetTime>
    SQLDataType.TIMEWITHTIMEZONE(int precision)
    static final DataType<byte[]>
    SQLDataType.VARBINARY(int length)
    The Types.VARBINARY type.
    static final DataType<String>
    SQLDataType.VARCHAR(int length)
    The Types.VARCHAR type.
    Methods in org.jooq.impl with parameters of type DataType
    Modifier and Type
    Method
    Description
    QOM.CreateDomain.$dataType(DataType<T> dataType)
     
    default @NotNull QOM.JSONArray<T>
    QOM.JSONArray.$returning(DataType<?> newReturning)
     
    default @NotNull QOM.JSONObject<T>
    QOM.JSONObject.$returning(DataType<?> newReturning)
     
    QOM.CreateFunction.$returns(DataType<?> returns)
     
    default @NotNull QOM.JSONArray<T>
    QOM.JSONArray.$type(DataType<T> newType)
     
    default @NotNull QOM.JSONObject<T>
    QOM.JSONObject.$type(DataType<T> newType)
     
    default @NotNull QOM.XMLSerialize<T>
    QOM.XMLSerialize.$type(DataType<T> newType)
     
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregate(String name, DataType<T> type, Field<?>... arguments)
    aggregate() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregate(Name name, DataType<T> type, Field<?>... arguments)
    aggregate() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregateDistinct(String name, DataType<T> type, Field<?>... arguments)
    aggregateDistinct() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregateDistinct(Name name, DataType<T> type, Field<?>... arguments)
    aggregateDistinct() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static final <T> Binding<T,T>
    DefaultBinding.binding(DataType<T> dataType)
    Get the internal default binding for a DataType.
    static <T> @NotNull Field<T>
    DSL.cast(Object value, DataType<T> type)
    Cast a value to another type.
    static <T> @NotNull Field<T>
    DSL.cast(Field<?> field, DataType<T> type)
    Cast a field to another type.
    static <T> @NotNull Field<T>
    DSL.castNull(DataType<T> type)
    Cast null to a type.
    static <T> @NotNull Field<T>
    DSL.coerce(Object value, DataType<T> as)
    Coerce a field to another type.
    static <T> @NotNull Field<T>
    DSL.coerce(Field<?> field, DataType<T> as)
    Coerce a field to another type.
    static <T, A extends ArrayRecord<T>>
    @NotNull ArrayAggOrderByStep<A>
    DSL.collect(Field<T> field, DataType<A> type)
    Get the collect() aggregate function.
    static <T, A extends ArrayRecord<T>>
    @NotNull ArrayAggOrderByStep<A>
    DSL.collectDistinct(Field<T> field, DataType<A> type)
    Get the collect() aggregate function.
    static <T> @NotNull Field<T>
    DSL.convert(DataType<T> type, Object value, int style)
    Convert a date time value to a string value using the SQL Server style CONVERT() function.
    static <T> @NotNull Field<T>
    DSL.convert(DataType<T> type, Field<?> value, int style)
    Convert a date time value to a string value using the SQL Server style CONVERT() function.
    static final <T> @NotNull Domain<T>
    Internal.createDomain(Schema schema, Name name, DataType<T> type, Check<?>... checks)
    Factory method for domain specifications.
    protected static final <R extends UDTRecord<R>, T>
    UDTField<R,T>
    UDTImpl.createField(String name, DataType<T> type, UDT<R> udt)
    Deprecated.
    - 3.12.0 - [#8000] - Use UDTImpl.createField(Name, DataType, UDT) instead.
    protected static final <R extends UDTRecord<R>, T>
    UDTField<R,T>
    UDTImpl.createField(String name, DataType<T> type, UDT<R> udt, String comment)
    Deprecated.
    - 3.12.0 - [#8000] - Use UDTImpl.createField(Name, DataType, UDT, String) instead.
    protected static final <R extends UDTRecord<R>, T, U>
    UDTField<R,U>
    UDTImpl.createField(String name, DataType<T> type, UDT<R> udt, String comment, Binding<T,U> binding)
    Deprecated.
    protected static final <R extends UDTRecord<R>, T, U>
    UDTField<R,U>
    UDTImpl.createField(String name, DataType<T> type, UDT<R> udt, String comment, Converter<T,U> converter)
    Deprecated.
    protected static final <R extends UDTRecord<R>, T, X, U>
    UDTField<R,U>
    UDTImpl.createField(String name, DataType<T> type, UDT<R> udt, String comment, Converter<X,U> converter, Binding<T,X> binding)
    Deprecated.
    protected static final <R extends UDTRecord<R>, T>
    UDTField<R,T>
    UDTImpl.createField(Name name, DataType<T> type, UDT<R> udt)
    Subclasses may call this method to create UDTField objects that are linked to this table.
    protected static final <R extends UDTRecord<R>, T>
    UDTField<R,T>
    UDTImpl.createField(Name name, DataType<T> type, UDT<R> udt, String comment)
    Subclasses may call this method to create UDTField objects that are linked to this table.
    protected static final <R extends UDTRecord<R>, T, U>
    UDTField<R,U>
    UDTImpl.createField(Name name, DataType<T> type, UDT<R> udt, String comment, Binding<T,U> binding)
    Subclasses may call this method to create UDTField objects that are linked to this table.
    protected static final <R extends UDTRecord<R>, T, U>
    UDTField<R,U>
    UDTImpl.createField(Name name, DataType<T> type, UDT<R> udt, String comment, Converter<T,U> converter)
    Subclasses may call this method to create UDTField objects that are linked to this table.
    protected static final <R extends UDTRecord<R>, T, X, U>
    UDTField<R,U>
    UDTImpl.createField(Name name, DataType<T> type, UDT<R> udt, String comment, Converter<X,U> converter, Binding<T,X> binding)
    Subclasses may call this method to create UDTField objects that are linked to this table.
    protected static final <T> Parameter<T>
    AbstractRoutine.createParameter(String name, DataType<T> type)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T> Parameter<T>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T> Parameter<T>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Binding<T,U> binding)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<T,U> converter)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, X, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<X,U> converter, Binding<T,X> binding)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, Binding<T,U> binding)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, Converter<T,U> converter)
    Deprecated.
    - Please, re-generate your routine code.
    protected static final <T, X, U> Parameter<U>
    AbstractRoutine.createParameter(String name, DataType<T> type, boolean isDefaulted, Converter<X,U> converter, Binding<T,X> binding)
    Deprecated.
    - Please, re-generate your routine code.
    static final <T> @NotNull Parameter<T>
    Internal.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed)
    Factory method for parameters.
    static final <T, U> @NotNull Parameter<U>
    Internal.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Binding<T,U> binding)
    Factory method for parameters.
    static final <T, U> @NotNull Parameter<U>
    Internal.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<T,U> converter)
    Factory method for parameters.
    static final <T, X, U> @NotNull Parameter<U>
    Internal.createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<X,U> converter, Binding<T,X> binding)
    Factory method for parameters.
    static final <T extends Number>
    @NotNull Sequence<T>
    Internal.createSequence(String name, Schema schema, DataType<T> type)
    Factory method for sequences.
    static final <T extends Number>
    @NotNull Sequence<T>
    Internal.createSequence(String name, Schema schema, DataType<T> type, Number startWith, Number incrementBy, Number minvalue, Number maxvalue, boolean cycle, Number cache)
    Factory method for sequences.
    static <T> @NotNull Field<T>
    DSL.default_(DataType<T> type)
    Create a DEFAULT keyword for use with INSERT, UPDATE, or MERGE statements.
    static <T> @NotNull Field<T>
    DSL.defaultValue(DataType<T> type)
    Create a DEFAULT keyword for use with INSERT, UPDATE, or MERGE statements.
    DefaultDSLContext.fetch(ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchAsync(ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchLazy(ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchOne(ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchOptional(ResultSet rs, DataType<?>... types)
     
    <T> Optional<T>
    DefaultDSLContext.fetchOptionalValue(ResultSet rs, DataType<T> type)
     
    DefaultDSLContext.fetchSingle(ResultSet rs, DataType<?>... types)
     
    DefaultDSLContext.fetchStream(ResultSet rs, DataType<?>... types)
     
    <T> T
    DefaultDSLContext.fetchValue(ResultSet rs, DataType<T> type)
     
    <T> List<T>
    DefaultDSLContext.fetchValues(ResultSet rs, DataType<T> type)
     
    static <T> @NotNull Field<T>
    DSL.field(String sql, DataType<T> type)
    Create a "plain SQL" field.
    static <T> @NotNull Field<T>
    DSL.field(String sql, DataType<T> type, Object... bindings)
    Create a "plain SQL" field.
    static <T> @NotNull Field<T>
    DSL.field(String sql, DataType<T> type, QueryPart... parts)
    Create a "plain SQL" field.
    static <T> @NotNull Field<T>
    DSL.field(Name name, DataType<T> type)
    Create a qualified field, given its (qualified) field name.
    static <T> @NotNull Field<T>
    DSL.field(Name name, DataType<T> type, Comment comment)
    Create a qualified field, given its (qualified) field name.
    static <T> @NotNull Field<T>
    DSL.field(SQL sql, DataType<T> type)
    Create a "plain SQL" field.
    <T> Field<T>
    TableImpl.field(String name, DataType<T> dataType)
     
    <T> Field<T>
    TableImpl.field(Name name, DataType<T> dataType)
     
    static <T> @NotNull Field<T>
    DSL.function(String name, DataType<T> type, Field<?>... arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull Field<T>
    DSL.function(Name name, DataType<T> type, Field<?>... arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static final <T> DataType<T>
    DefaultDataType.getDataType(SQLDialect dialect, Class<T> type, DataType<T> fallbackDataType)
     
    static <T> @NotNull Parameter<T>
    DSL.in(String name, DataType<T> type)
    Create an IN parameter.
    static <T> @NotNull Parameter<T>
    DSL.in(Name name, DataType<T> type)
    Create an IN parameter.
    static <T> @NotNull Param<T>
    DSL.inline(Object value, DataType<T> type)
    Create a bind value, that is always inlined.
    static <T> @NotNull Parameter<T>
    DSL.inOut(String name, DataType<T> type)
    Create an IN OUT parameter.
    static <T> @NotNull Parameter<T>
    DSL.inOut(Name name, DataType<T> type)
    Create an IN OUT parameter.
    static <T> @NotNull Field<T>
    DSL.noField(DataType<T> type)
    Return a Field that behaves like no field being present.
    protected static Field<?>[]
    DSL.nullSafe(Field<?>[] fields, DataType<?> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11092] - 3.15.0 - This method will be removed without public replacement.
    protected static <T> Field<T>
    DSL.nullSafe(Field<T> field, DataType<?> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11092] - 3.15.0 - This method will be removed without public replacement.
    protected static List<Field<?>>
    DSL.nullSafeList(Field<?>[] fields, DataType<?> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11092] - 3.15.0 - This method will be removed without public replacement.
    static final <T> CustomField<T>
    CustomField.of(String name, DataType<T> type, Consumer<? super Context<?>> consumer)
    Create a CustomField from a lambda expression.
    static final <T> CustomField<T>
    CustomField.of(Name name, DataType<T> type, Consumer<? super Context<?>> consumer)
    Create a CustomField from a lambda expression.
    static <T> @NotNull Parameter<T>
    DSL.out(String name, DataType<T> type)
    Create an OUT parameter.
    static <T> @NotNull Parameter<T>
    DSL.out(Name name, DataType<T> type)
    Create an OUT parameter.
    static <T> @NotNull Param<T>
    DSL.param(String name, DataType<T> type)
    Create a named parameter with a defined type and no initial value.
    static <T> @NotNull Param<T>
    DSL.param(DataType<T> type)
    Create an unnamed parameter with a defined type and no initial value.
    static <T> @NotNull Period<T>
    DSL.period(Name name, DataType<T> type)
    Create a named Period reference.
    static <T extends Number>
    @NotNull Sequence<T>
    DSL.sequence(String sql, DataType<T> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - 3.10 - [#6162] - Use DSL.sequence(Name, DataType) instead.
    static <T extends Number>
    @NotNull Sequence<T>
    DSL.sequence(Name name, DataType<T> type)
    Create a qualified sequence, given its sequence name.
    static <T> @NotNull Period<T>
    DSL.systemTime(DataType<T> type)
    Create a SYSTEM_TIME Period reference.
    static <T> @NotNull Param<T>
    DSL.val(Object value, DataType<T> type)
    Get a bind value with an associated type.
    static <T> @NotNull Param<T>
    DSL.value(Object value, DataType<T> type)
    A synonym for DSL.val(Object, DataType) to be used in Scala and Groovy, where val is a reserved keyword.
    static <T> @NotNull Field<T>
    DSL.value(DataType<T> type)
    Create the VALUE pseudo field for usage with DOMAIN specifications.
    static <T> @NotNull Variable<T>
    DSL.var(String name, DataType<T> type)
    Create a local variable reference for use in procedural code.
    static <T> @NotNull Variable<T>
    DSL.var(Name name, DataType<T> type)
    Create a local variable reference for use in procedural code.
    static <T> @NotNull Variable<T>
    DSL.variable(String name, DataType<T> type)
    A synonym for DSL.var(Name, DataType) to be used in Scala and Groovy, where var is a reserved keyword.
    static <T> @NotNull Variable<T>
    DSL.variable(Name name, DataType<T> type)
    A synonym for DSL.var(Name, DataType) to be used in Scala and Groovy, where var is a reserved keyword.
    static <T> @NotNull Field<T>
    DSL.xmlserializeContent(Field<XML> value, DataType<T> type)
    The XMLSERIALIZE_CONTENT function.
    static <T> @NotNull Field<T>
    DSL.xmlserializeContent(XML value, DataType<T> type)
    The XMLSERIALIZE_CONTENT function.
    static <T> @NotNull Field<T>
    DSL.xmlserializeDocument(Field<XML> value, DataType<T> type)
    The XMLSERIALIZE function.
    static <T> @NotNull Field<T>
    DSL.xmlserializeDocument(XML value, DataType<T> type)
    The XMLSERIALIZE function.
    Constructors in org.jooq.impl with parameters of type DataType
    Modifier
    Constructor
    Description
    protected
    AbstractRoutine(String name, Schema schema, DataType<T> type)
     
    protected
    AbstractRoutine(String name, Schema schema, DataType<X> type, Binding<X,T> binding)
     
    protected
    AbstractRoutine(String name, Schema schema, DataType<X> type, Converter<X,T> converter)
     
    protected
    AbstractRoutine(String name, Schema schema, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
     
    protected
    AbstractRoutine(String name, Schema schema, Package pkg, DataType<T> type)
     
    protected
    AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Binding<X,T> binding)
     
    protected
    AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Converter<X,T> converter)
     
    protected
    AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
     
    protected
    ArrayRecordImpl(Schema schema, String name, DataType<T> type)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, String name, DataType<X> type, Binding<X,Y> binding)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, String name, DataType<X> type, Converter<X,T> converter)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, String name, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, Package pkg, String name, DataType<T> type)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Binding<X,Y> binding)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Converter<X,T> converter)
    Create an empty array record
    protected
    ArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, String name, DataType<V> type, DataType<K> indexDataType)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Binding<X,Y> binding)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Converter<X,V> converter)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Converter<Y,V> converter, Binding<X,Y> binding)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, Package pkg, String name, DataType<V> type, DataType<K> indexDataType)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Binding<X,Y> binding)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Converter<X,V> converter)
    Create an empty array record
    protected
    AssociativeArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Converter<Y,V> converter, Binding<X,Y> binding)
    Create an empty array record
     
    BuiltInDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName)
    Constructor for dialect specific data types.
     
    BuiltInDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName, String castTypeName)
    Constructor for dialect specific data types.
    protected
    CustomField(String name, DataType<T> type)
     
    protected
    CustomField(Name name, DataType<T> type)
     
     
    DefaultDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName)
     
     
    DefaultDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName, String castTypeName)
     
     
    SequenceImpl(String name, Schema schema, DataType<T> type)
    Deprecated.
  • Uses of DataType in org.jooq.util.access

    Fields in org.jooq.util.access declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<Long>
    AccessDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigInteger>
    AccessDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    AccessDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AccessDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    AccessDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    AccessDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Date>
    AccessDataType.__DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    AccessDataType.__DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    AccessDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    AccessDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    AccessDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    AccessDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AccessDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    AccessDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Time>
    AccessDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AccessDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AccessDataType.__VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    AccessDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AccessDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AccessDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AccessDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AccessDataType.COUNTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    AccessDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    AccessDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AccessDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AccessDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AccessDataType.LONGCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AccessDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AccessDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AccessDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    AccessDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    AccessDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AccessDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    AccessDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    AccessDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.ase

    Fields in org.jooq.util.ase declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    ASEDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    ASEDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    ASEDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    ASEDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    ASEDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    ASEDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    ASEDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    ASEDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    ASEDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ASEDataType.BIGDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    ASEDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    ASEDataType.BIGTIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ASEDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    ASEDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    ASEDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ASEDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ASEDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ASEDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ASEDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ASEDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ASEDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ASEDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ASEDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.LONGSYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ASEDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ASEDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    ASEDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ASEDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    ASEDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ASEDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.SYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    ASEDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ASEDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    ASEDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.UNICHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.UNITEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.UNIVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    ASEDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ASEDataType.UNSIGNEDINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    ASEDataType.UNSIGNEDSMALLLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ASEDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ASEDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.auroramysql

    Fields in org.jooq.util.auroramysql declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    AuroraMySQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraMySQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AuroraMySQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraMySQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraMySQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraMySQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    AuroraMySQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraMySQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    AuroraMySQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraMySQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<ULong>
    AuroraMySQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AuroraMySQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AuroraMySQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AuroraMySQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    AuroraMySQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    AuroraMySQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AuroraMySQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AuroraMySQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    AuroraMySQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    AuroraMySQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraMySQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraMySQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    AuroraMySQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    AuroraMySQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraMySQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    AuroraMySQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    AuroraMySQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    AuroraMySQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UShort>
    AuroraMySQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    AuroraMySQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    AuroraMySQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    AuroraMySQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    AuroraMySQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraMySQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraMySQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Year>
    AuroraMySQLDataType.YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.aurorapostgres

    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    AuroraPostgresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    AuroraPostgresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AuroraPostgresDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    AuroraPostgresDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    AuroraPostgresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraPostgresDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AuroraPostgresDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraPostgresDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraPostgresDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraPostgresDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    AuroraPostgresDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    AuroraPostgresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    AuroraPostgresDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    AuroraPostgresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    AuroraPostgresDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    AuroraPostgresDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    AuroraPostgresDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AuroraPostgresDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    AuroraPostgresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    AuroraPostgresDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    AuroraPostgresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AuroraPostgresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    AuroraPostgresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    AuroraPostgresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    AuroraPostgresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    AuroraPostgresDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraPostgresDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    AuroraPostgresDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraPostgresDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraPostgresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    AuroraPostgresDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    AuroraPostgresDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    AuroraPostgresDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    AuroraPostgresDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    AuroraPostgresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    AuroraPostgresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    AuroraPostgresDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraPostgresDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    AuroraPostgresDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    AuroraPostgresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    AuroraPostgresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    AuroraPostgresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    AuroraPostgresDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    AuroraPostgresDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    AuroraPostgresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    AuroraPostgresDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    AuroraPostgresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    AuroraPostgresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    AuroraPostgresDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    AuroraPostgresDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    AuroraPostgresDataType.VOID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    AuroraPostgresDataType.XID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.bigquery

    Fields in org.jooq.util.bigquery declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    BigQueryDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    BigQueryDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    BigQueryDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    BigQueryDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    BigQueryDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    BigQueryDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    BigQueryDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    BigQueryDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    BigQueryDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    BigQueryDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    BigQueryDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    BigQueryDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    BigQueryDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    BigQueryDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    BigQueryDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    BigQueryDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    BigQueryDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    BigQueryDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    BigQueryDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    BigQueryDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    BigQueryDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    BigQueryDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    BigQueryDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.cockroachdb

    Fields in org.jooq.util.cockroachdb declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    CockroachDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    CockroachDBDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    CockroachDBDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    CockroachDBDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    CockroachDBDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CockroachDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    CockroachDBDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CockroachDBDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CockroachDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CockroachDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CockroachDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    CockroachDBDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    CockroachDBDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    CockroachDBDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    CockroachDBDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    CockroachDBDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CockroachDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    CockroachDBDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    CockroachDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CockroachDBDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CockroachDBDataType.BYTES
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    CockroachDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CockroachDBDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CockroachDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    CockroachDBDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    CockroachDBDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    CockroachDBDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    CockroachDBDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CockroachDBDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    CockroachDBDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    CockroachDBDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    CockroachDBDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    CockroachDBDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    CockroachDBDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSONB>
    CockroachDBDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CockroachDBDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    CockroachDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CockroachDBDataType.SERIAL2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    CockroachDBDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CockroachDBDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CockroachDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CockroachDBDataType.SMALLSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.STRING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    CockroachDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    CockroachDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    CockroachDBDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    CockroachDBDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    CockroachDBDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    CockroachDBDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    CockroachDBDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CockroachDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.cubrid

    Fields in org.jooq.util.cubrid declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    CUBRIDDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    CUBRIDDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    CUBRIDDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    CUBRIDDataType.__BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    CUBRIDDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    CUBRIDDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CUBRIDDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    CUBRIDDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CUBRIDDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CUBRIDDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    CUBRIDDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    CUBRIDDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    CUBRIDDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    CUBRIDDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    CUBRIDDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    CUBRIDDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    CUBRIDDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    CUBRIDDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CUBRIDDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CUBRIDDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CUBRIDDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    CUBRIDDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    CUBRIDDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CUBRIDDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CUBRIDDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    CUBRIDDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    CUBRIDDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.ELO
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    CUBRIDDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    CUBRIDDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    CUBRIDDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    CUBRIDDataType.MONETARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.MULTISET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    CUBRIDDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    CUBRIDDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.SEQUENCE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    CUBRIDDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CUBRIDDataType.SHORT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    CUBRIDDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.STRING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    CUBRIDDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    CUBRIDDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    CUBRIDDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    CUBRIDDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.db2

    Fields in org.jooq.util.db2 declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    DB2DataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DB2DataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    DB2DataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    DB2DataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    DB2DataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    DB2DataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DB2DataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DB2DataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DB2DataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DB2DataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    DB2DataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DB2DataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    DB2DataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    DB2DataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DB2DataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    DB2DataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    DB2DataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DB2DataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DB2DataType.CHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    DB2DataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.DBCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    DB2DataType.DECFLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    DB2DataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    DB2DataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.GRAPHIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    DB2DataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    DB2DataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    DB2DataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    DB2DataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    DB2DataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DB2DataType.VARCHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.VARGRAPHIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DB2DataType.XML
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.derby

    Fields in org.jooq.util.derby declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    DerbyDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    DerbyDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DerbyDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    DerbyDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    DerbyDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    DerbyDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    DerbyDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DerbyDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DerbyDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DerbyDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DerbyDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    DerbyDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    DerbyDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    DerbyDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    DerbyDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    DerbyDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    DerbyDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    DerbyDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    DerbyDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    DerbyDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.CHARACTERFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.CHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.CHARVARYINGFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    DerbyDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    DerbyDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    DerbyDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    DerbyDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    DerbyDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    DerbyDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    DerbyDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    DerbyDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.JAVAIOSERIALIZABLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.LONGVARCHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    DerbyDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    DerbyDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    DerbyDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    DerbyDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    DerbyDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    DerbyDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    DerbyDataType.VARCHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.exasol

    Fields in org.jooq.util.exasol declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    ExasolDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    ExasolDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    ExasolDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    ExasolDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Result<Record>>
    ExasolDataType.__RESULT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    ExasolDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    ExasolDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    ExasolDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    ExasolDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    ExasolDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    ExasolDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    ExasolDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    ExasolDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ExasolDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ExasolDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ExasolDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ExasolDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ExasolDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ExasolDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ExasolDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    ExasolDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    ExasolDataType.IDENTITY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    ExasolDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ExasolDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    ExasolDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ExasolDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    ExasolDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ExasolDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    ExasolDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    ExasolDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    ExasolDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSONB>
    ExasolDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ExasolDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ExasolDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    ExasolDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    ExasolDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    ExasolDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    ExasolDataType.SIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ExasolDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    ExasolDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    ExasolDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    ExasolDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    ExasolDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    ExasolDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    ExasolDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    ExasolDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.VARCHAR_CASESENSITIVE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    ExasolDataType.VARCHAR_IGNORECASE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.firebird

    Fields in org.jooq.util.firebird declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    FirebirdDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    FirebirdDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    FirebirdDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    FirebirdDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    FirebirdDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    FirebirdDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    FirebirdDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    FirebirdDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    FirebirdDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    FirebirdDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    FirebirdDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    FirebirdDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    FirebirdDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    FirebirdDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    FirebirdDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    FirebirdDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    FirebirdDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    FirebirdDataType.BLOBSUBTYPE0
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.BLOBSUBTYPE1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    FirebirdDataType.BLOBSUBTYPEBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    FirebirdDataType.BLOBSUBTYPETEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    FirebirdDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    FirebirdDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    FirebirdDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    FirebirdDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    FirebirdDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    FirebirdDataType.D_FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    FirebirdDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    FirebirdDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    FirebirdDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    FirebirdDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    FirebirdDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    FirebirdDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    FirebirdDataType.INT64
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    FirebirdDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    FirebirdDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    FirebirdDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    FirebirdDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    FirebirdDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    FirebirdDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    FirebirdDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    FirebirdDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    FirebirdDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    FirebirdDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.h2

    Fields in org.jooq.util.h2 declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    H2DataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    H2DataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    H2DataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Result<Record>>
    H2DataType.__RESULT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    H2DataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    H2DataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.BINARYVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    H2DataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    H2DataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    H2DataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    H2DataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    H2DataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    H2DataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    H2DataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    H2DataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    H2DataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    H2DataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    H2DataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    H2DataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    H2DataType.IDENTITY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    H2DataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    H2DataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    H2DataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    H2DataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    H2DataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    H2DataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    H2DataType.JAVAOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    H2DataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSONB>
    H2DataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    H2DataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NATIONALCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NCHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    H2DataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    H2DataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    H2DataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    H2DataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    H2DataType.SIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    H2DataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    H2DataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    H2DataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    H2DataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    H2DataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    H2DataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    H2DataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    H2DataType.VARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.hana

    Fields in org.jooq.util.hana declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    HanaDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    HanaDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    HanaDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    HanaDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    HanaDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HanaDataType.__CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    HanaDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    HanaDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    HanaDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    HanaDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HanaDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HanaDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HanaDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HanaDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    HanaDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    HanaDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    HanaDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    HanaDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    HanaDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    HanaDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HanaDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HanaDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HanaDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    HanaDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    HanaDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    HanaDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    HanaDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HanaDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    HanaDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    HanaDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HanaDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    HanaDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    HanaDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    HanaDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HanaDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HanaDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.hsqldb

    Fields in org.jooq.util.hsqldb declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    HSQLDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    HSQLDBDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    HSQLDBDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    HSQLDBDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    HSQLDBDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HSQLDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HSQLDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HSQLDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    HSQLDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    HSQLDBDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    HSQLDBDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    HSQLDBDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    HSQLDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HSQLDBDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HSQLDBDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    HSQLDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HSQLDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    HSQLDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    HSQLDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    HSQLDBDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    HSQLDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    HSQLDBDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    HSQLDBDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    HSQLDBDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    HSQLDBDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    HSQLDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    HSQLDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    HSQLDBDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    HSQLDBDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    HSQLDBDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HSQLDBDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    HSQLDBDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    HSQLDBDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    HSQLDBDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    HSQLDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    HSQLDBDataType.ROW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    HSQLDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    HSQLDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    HSQLDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    HSQLDBDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    HSQLDBDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    HSQLDBDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    HSQLDBDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    HSQLDBDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    HSQLDBDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    HSQLDBDataType.VARCHARIGNORECASE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.ignite

    Fields in org.jooq.util.ignite declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    IgniteDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    IgniteDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    IgniteDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    IgniteDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    IgniteDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    IgniteDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    IgniteDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IgniteDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IgniteDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    IgniteDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IgniteDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IgniteDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    IgniteDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    IgniteDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    IgniteDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    IgniteDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    IgniteDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    IgniteDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IgniteDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    IgniteDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    IgniteDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    IgniteDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    IgniteDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    IgniteDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    IgniteDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    IgniteDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    IgniteDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IgniteDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IgniteDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.informix

    Fields in org.jooq.util.informix declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    InformixDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    InformixDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    InformixDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    InformixDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    InformixDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    InformixDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    InformixDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    InformixDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    InformixDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Time>
    InformixDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    InformixDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    InformixDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    InformixDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    InformixDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    InformixDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    InformixDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    InformixDataType.BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    InformixDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    InformixDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    InformixDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    InformixDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    InformixDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    InformixDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    InformixDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    InformixDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    InformixDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.LVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    InformixDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    InformixDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    InformixDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    InformixDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    InformixDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    InformixDataType.SMALLFLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    InformixDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    InformixDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.ingres

    Fields in org.jooq.util.ingres declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    IngresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    IngresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    IngresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    IngresDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    IngresDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    IngresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    IngresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    IngresDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    IngresDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    IngresDataType.ANSIDATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    IngresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    IngresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    IngresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.C
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    IngresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    IngresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    IngresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    IngresDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    IngresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    IngresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    IngresDataType.I1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    IngresDataType.I2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    IngresDataType.I4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    IngresDataType.I8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    IngresDataType.INGRESDATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    IngresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    IngresDataType.INTEGER1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    IngresDataType.INTEGER2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    IngresDataType.INTEGER4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    IngresDataType.INTEGER8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.LONGBYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.NCHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    IngresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    IngresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    IngresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    IngresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    IngresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    IngresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    IngresDataType.TIMEWITHLOCALTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    IngresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    IngresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    IngresDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    IngresDataType.VARBYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    IngresDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.mariadb

    Fields in org.jooq.util.mariadb declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    MariaDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    MariaDBDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MariaDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    MariaDBDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MariaDBDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MariaDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MariaDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    MariaDBDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MariaDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    MariaDBDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    MariaDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<ULong>
    MariaDBDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MariaDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MariaDBDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MariaDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    MariaDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MariaDBDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MariaDBDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MariaDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MariaDBDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MariaDBDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MariaDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MariaDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MariaDBDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MariaDBDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    MariaDBDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MariaDBDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MariaDBDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    MariaDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    MariaDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UShort>
    MariaDBDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    MariaDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MariaDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    MariaDBDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    MariaDBDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MariaDBDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MariaDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Year>
    MariaDBDataType.YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.memsql

    Fields in org.jooq.util.memsql declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    MemSQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    MemSQLDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    MemSQLDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MemSQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    MemSQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MemSQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MemSQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MemSQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    MemSQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MemSQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    MemSQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    MemSQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<ULong>
    MemSQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MemSQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MemSQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MemSQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    MemSQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MemSQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MemSQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MemSQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MemSQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MemSQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MemSQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MemSQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MemSQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MemSQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MemSQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MemSQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    MemSQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    MemSQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UShort>
    MemSQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    MemSQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MemSQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    MemSQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    MemSQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MemSQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MemSQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Year>
    MemSQLDataType.YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.mysql

    Fields in org.jooq.util.mysql declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    MySQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    MySQLDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MySQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    MySQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MySQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MySQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MySQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigDecimal>
    MySQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    MySQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    MySQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    MySQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<ULong>
    MySQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MySQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MySQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    MySQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    MySQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MySQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MySQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    MySQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MySQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    MySQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MySQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MySQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MySQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MySQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    MySQLDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    MySQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    MySQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    MySQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    MySQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UShort>
    MySQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    MySQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    MySQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    MySQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    MySQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    MySQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    MySQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Year>
    MySQLDataType.YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.oracle

    Fields in org.jooq.util.oracle declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<Long>
    OracleDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigInteger>
    OracleDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    OracleDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    OracleDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    OracleDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    OracleDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    OracleDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    OracleDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Integer>
    OracleDataType.__INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    OracleDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    OracleDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    OracleDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    OracleDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    OracleDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Float>
    OracleDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Short>
    OracleDataType.__SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    OracleDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Time>
    OracleDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<OffsetDateTime>
    OracleDataType.__TIMESTAMPWITHTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<OffsetTime>
    OracleDataType.__TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    OracleDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    OracleDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    OracleDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    OracleDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<XML>
    OracleDataType.__XMLTYPE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    OracleDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    OracleDataType.BFILE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    OracleDataType.BINARY_DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    OracleDataType.BINARY_FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.BINARY_INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    OracleDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    OracleDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    OracleDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    OracleDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    OracleDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    OracleDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    OracleDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    OracleDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigInteger>
    OracleDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigInteger>
    OracleDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    OracleDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    OracleDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    OracleDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    OracleDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.LONG
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    OracleDataType.LONGRAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.NATURAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.NATURALN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    OracleDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    OracleDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    OracleDataType.PLS_BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.PLS_INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.POSITIVE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.POSITIVEN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    OracleDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    OracleDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    OracleDataType.REF_CURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Geometry>
    OracleDataType.SDO_GEOMETRY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    OracleDataType.SIGNTYPE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigInteger>
    OracleDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    OracleDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    OracleDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    OracleDataType.VARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<XML>
    OracleDataType.XMLTYPE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.postgres

    Fields in org.jooq.util.postgres declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    PostgresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    PostgresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    PostgresDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    PostgresDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    PostgresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    PostgresDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    PostgresDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    PostgresDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    PostgresDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    PostgresDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    PostgresDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    PostgresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    PostgresDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    PostgresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    PostgresDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    PostgresDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    PostgresDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    PostgresDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    PostgresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    PostgresDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    PostgresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    PostgresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    PostgresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    PostgresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    PostgresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    PostgresDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    PostgresDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    PostgresDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    PostgresDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    PostgresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    PostgresDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    PostgresDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    PostgresDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    PostgresDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSONB>
    PostgresDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    PostgresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    PostgresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Record>
    PostgresDataType.RECORD
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    PostgresDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    PostgresDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    PostgresDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    PostgresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    PostgresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    PostgresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    PostgresDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    PostgresDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    PostgresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    PostgresDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    PostgresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    PostgresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    PostgresDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    PostgresDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    PostgresDataType.VOID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    PostgresDataType.XID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.redshift

    Fields in org.jooq.util.redshift declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    RedshiftDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    RedshiftDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    RedshiftDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    RedshiftDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    RedshiftDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    RedshiftDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    RedshiftDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    RedshiftDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    RedshiftDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    RedshiftDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    RedshiftDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    RedshiftDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    RedshiftDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    RedshiftDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    RedshiftDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    RedshiftDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    RedshiftDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    RedshiftDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    RedshiftDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    RedshiftDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    RedshiftDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    RedshiftDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    RedshiftDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    RedshiftDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    RedshiftDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    RedshiftDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    RedshiftDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    RedshiftDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    RedshiftDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    RedshiftDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    RedshiftDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    RedshiftDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    RedshiftDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    RedshiftDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    RedshiftDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    RedshiftDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    RedshiftDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    RedshiftDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    RedshiftDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    RedshiftDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    RedshiftDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    RedshiftDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    RedshiftDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    RedshiftDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    RedshiftDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    RedshiftDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    RedshiftDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    RedshiftDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    RedshiftDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    RedshiftDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    RedshiftDataType.XID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.snowflake

    Fields in org.jooq.util.snowflake declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<Long>
    SnowflakeDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<BigInteger>
    SnowflakeDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    SnowflakeDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    SnowflakeDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SnowflakeDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    SnowflakeDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Integer>
    SnowflakeDataType.__INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    SnowflakeDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    SnowflakeDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SnowflakeDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SnowflakeDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SnowflakeDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SnowflakeDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SnowflakeDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SnowflakeDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Float>
    SnowflakeDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Short>
    SnowflakeDataType.__SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    SnowflakeDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Time>
    SnowflakeDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    SnowflakeDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    SnowflakeDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    SnowflakeDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    SnowflakeDataType.ARRAY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SnowflakeDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    SnowflakeDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SnowflakeDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    SnowflakeDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SnowflakeDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SnowflakeDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Geography>
    SnowflakeDataType.GEOGRAPHY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Geometry>
    SnowflakeDataType.GEOMETRY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    SnowflakeDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SnowflakeDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    SnowflakeDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SnowflakeDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SnowflakeDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    SnowflakeDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SnowflakeDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SnowflakeDataType.TIMESTAMP_LTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SnowflakeDataType.TIMESTAMP_TZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SnowflakeDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SnowflakeDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SnowflakeDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    SnowflakeDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SnowflakeDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SnowflakeDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    SnowflakeDataType.VARIANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.sqldatawarehouse

    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    SQLDataWarehouseDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    SQLDataWarehouseDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLDataWarehouseDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    SQLDataWarehouseDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    SQLDataWarehouseDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    SQLDataWarehouseDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    SQLDataWarehouseDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLDataWarehouseDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLDataWarehouseDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLDataWarehouseDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLDataWarehouseDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    SQLDataWarehouseDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    SQLDataWarehouseDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLDataWarehouseDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLDataWarehouseDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    SQLDataWarehouseDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    SQLDataWarehouseDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLDataWarehouseDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLDataWarehouseDataType.DATETIME2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SQLDataWarehouseDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLDataWarehouseDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SQLDataWarehouseDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLDataWarehouseDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    SQLDataWarehouseDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SQLDataWarehouseDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLDataWarehouseDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLDataWarehouseDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SQLDataWarehouseDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLDataWarehouseDataType.ROWVERSION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLDataWarehouseDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    SQLDataWarehouseDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLDataWarehouseDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    SQLDataWarehouseDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLDataWarehouseDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    SQLDataWarehouseDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    SQLDataWarehouseDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLDataWarehouseDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLDataWarehouseDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.sqlite

    Fields in org.jooq.util.sqlite declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<ULong>
    SQLiteDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLiteDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    SQLiteDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    SQLiteDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    SQLiteDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    SQLiteDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    SQLiteDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLiteDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLiteDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    SQLiteDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Time>
    SQLiteDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    SQLiteDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    SQLiteDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLiteDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    SQLiteDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLiteDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLiteDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    SQLiteDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    SQLiteDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLiteDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLiteDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SQLiteDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SQLiteDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SQLiteDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SQLiteDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    SQLiteDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLiteDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SQLiteDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLiteDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SQLiteDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.NATIVECHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    SQLiteDataType.NULL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLiteDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SQLiteDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    SQLiteDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    SQLiteDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigInteger>
    SQLiteDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLiteDataType.VARYINGCHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.sqlserver

    Fields in org.jooq.util.sqlserver declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    SQLServerDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    SQLServerDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLServerDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    SQLServerDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    SQLServerDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Double>
    SQLServerDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    SQLServerDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLServerDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SQLServerDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLServerDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    SQLServerDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    SQLServerDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    SQLServerDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLServerDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLServerDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    SQLServerDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    SQLServerDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLServerDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLServerDataType.DATETIME2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    SQLServerDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLServerDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SQLServerDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLServerDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    SQLServerDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SQLServerDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLServerDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLServerDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SQLServerDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SQLServerDataType.ROWVERSION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SQLServerDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    SQLServerDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SQLServerDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.SYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    SQLServerDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLServerDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    SQLServerDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    SQLServerDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SQLServerDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SQLServerDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.sybase

    Fields in org.jooq.util.sybase declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    SybaseDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    SybaseDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    SybaseDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    SybaseDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    SybaseDataType.__BYTESIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    SybaseDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    SybaseDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    SybaseDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    SybaseDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    SybaseDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    SybaseDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SybaseDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SybaseDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SybaseDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SybaseDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    SybaseDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SybaseDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    SybaseDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.LONGBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.LONGVARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SybaseDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SybaseDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    SybaseDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SybaseDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    SybaseDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    SybaseDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    SybaseDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SybaseDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    SybaseDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    SybaseDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    SybaseDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.UNIQUEIDENTIFIERSTR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<ULong>
    SybaseDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UInteger>
    SybaseDataType.UNSIGNEDINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UShort>
    SybaseDataType.UNSIGNEDSMALLLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UByte>
    SybaseDataType.UNSIGNEDTINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    SybaseDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    SybaseDataType.XML
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.teradata

    Fields in org.jooq.util.teradata declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    TeradataDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    TeradataDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    TeradataDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    TeradataDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    TeradataDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    TeradataDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    TeradataDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    TeradataDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    TeradataDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Float>
    TeradataDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    TeradataDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    TeradataDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    TeradataDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    TeradataDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    TeradataDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    TeradataDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    TeradataDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    TeradataDataType.BYTEINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    TeradataDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    TeradataDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    TeradataDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    TeradataDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    TeradataDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    TeradataDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    TeradataDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    TeradataDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    TeradataDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    TeradataDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    TeradataDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    TeradataDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    TeradataDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    TeradataDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    TeradataDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    TeradataDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    TeradataDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    TeradataDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    TeradataDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.vertica

    Fields in org.jooq.util.vertica declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    VerticaDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    VerticaDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    VerticaDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    VerticaDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    VerticaDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSON>
    VerticaDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<JSONB>
    VerticaDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    VerticaDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    VerticaDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    VerticaDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UUID>
    VerticaDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    VerticaDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    VerticaDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    VerticaDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    VerticaDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    VerticaDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    VerticaDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    VerticaDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    VerticaDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    VerticaDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    VerticaDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    VerticaDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    VerticaDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    VerticaDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    VerticaDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    VerticaDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    VerticaDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    VerticaDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    VerticaDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    VerticaDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    VerticaDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    VerticaDataType.ROW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    VerticaDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    VerticaDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    VerticaDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    VerticaDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Byte>
    VerticaDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    VerticaDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    VerticaDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    VerticaDataType.VARCHARIGNORECASE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Uses of DataType in org.jooq.util.yugabytedb

    Fields in org.jooq.util.yugabytedb declared as DataType
    Modifier and Type
    Field
    Description
    protected static final DataType<BigInteger>
    YugabyteDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<ULong>
    YugabyteDBDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    YugabyteDBDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Boolean>
    YugabyteDBDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UInteger>
    YugabyteDBDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    YugabyteDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    YugabyteDBDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    YugabyteDBDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    YugabyteDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    YugabyteDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<String>
    YugabyteDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UShort>
    YugabyteDBDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Byte>
    YugabyteDBDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<UByte>
    YugabyteDBDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<byte[]>
    YugabyteDBDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static final DataType<Year>
    YugabyteDBDataType.__YEAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    YugabyteDBDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    YugabyteDBDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Boolean>
    YugabyteDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<byte[]>
    YugabyteDBDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Date>
    YugabyteDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    YugabyteDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    YugabyteDBDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    YugabyteDBDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Double>
    YugabyteDBDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Instant>
    YugabyteDBDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    YugabyteDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    YugabyteDBDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    YugabyteDBDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    YugabyteDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToSecond>
    YugabyteDBDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<DayToSecond>
    YugabyteDBDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<YearToMonth>
    YugabyteDBDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSON>
    YugabyteDBDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<JSONB>
    YugabyteDBDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<BigDecimal>
    YugabyteDBDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Float>
    YugabyteDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Result<Record>>
    YugabyteDBDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    YugabyteDBDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Integer>
    YugabyteDBDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Short>
    YugabyteDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    YugabyteDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    YugabyteDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    YugabyteDBDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Timestamp>
    YugabyteDBDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetDateTime>
    YugabyteDBDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    YugabyteDBDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Time>
    YugabyteDBDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<OffsetTime>
    YugabyteDBDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<UUID>
    YugabyteDBDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<String>
    YugabyteDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Object>
    YugabyteDBDataType.VOID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final DataType<Long>
    YugabyteDBDataType.XID
    Deprecated, for removal: This API element is subject to removal in a future version.