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.
  • Uses of DataType in org.jooq

    Methods in org.jooq that return DataType
    Modifier and Type
    Method
    Description
    <A extends ArrayRecord<?>>
    @NotNull DataType<A>
    DataType.asArrayDataType​(Class<A> arrayDataType)
    Retrieve the data type for an Oracle-style 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<?>[]
    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.
    @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.
    ArrayRecord.getArrayType()
    Get the data type of the array.
    ArrayRecord.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.
    @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.scale​(int scale)
    Return a new data type like this, with a new scale value.
    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.
    CreateTableColumnStep.column​(String field, DataType<?> type)
    Add a column to the column list of the CREATE TABLE statement.
    <T> @NotNull CreateTableColumnStep
    CreateTableColumnStep.column​(Field<T> field, DataType<T> type)
    Add a column to the column list of the CREATE TABLE statement.
    CreateTableColumnStep.column​(Name field, DataType<?> type)
    Add a column to the column list of 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 DataType<Long>
    SQLDataType.BIGINT
    The Types.BIGINT type.
    static DataType<ULong>
    SQLDataType.BIGINTUNSIGNED
    The unsigned Types.BIGINT type.
    static DataType<byte[]>
    SQLDataType.BINARY
    The Types.BINARY type.
    SQLDataType.BIT
    The Types.BIT type.
    static DataType<byte[]>
    SQLDataType.BLOB
    The Types.BLOB type.
    SQLDataType.BOOLEAN
    The Types.BOOLEAN type.
    SQLDataType.CHAR
    The Types.CHAR type.
    SQLDataType.CLOB
    The Types.CLOB type.
    static DataType<Date>
    SQLDataType.DATE
    The Types.DATE type.
    SQLDataType.DECIMAL
    The Types.DECIMAL type.
    SQLDataType.DECIMAL_INTEGER
    The zero-scale Types.DECIMAL type.
    SQLDataType.DOUBLE
    The Types.DOUBLE type.
    SQLDataType.FLOAT
    The Types.FLOAT type.
    SQLDataType.INSTANT
    A Types.TIMESTAMP_WITH_TIMEZONE type that uses UTC as time zone.
    SQLDataType.INTEGER
    The Types.INTEGER type.
    SQLDataType.INTEGERUNSIGNED
    The unsigned Types.INTEGER type.
    SQLDataType.INTERVAL
    A vendor specific INTERVAL YEAR TO SECOND data type, which combines SQLDataType.INTERVALYEARTOMONTH and SQLDataType.INTERVALDAYTOSECOND.
    The SQL standard INTERVAL DAY TO SECOND data type.
    The SQL standard INTERVAL YEAR TO MONTH data type.
    static DataType<JSON>
    SQLDataType.JSON
    The JSON type.
    static DataType<JSONB>
    SQLDataType.JSONB
    The JSONB type.
    SQLDataType.LOCALDATE
    The Types.DATE type.
    SQLDataType.LOCALDATETIME
    The Types.TIMESTAMP type.
    SQLDataType.LOCALTIME
    The Types.TIME type.
    SQLDataType.LONGNVARCHAR
    static DataType<byte[]>
    SQLDataType.LONGVARBINARY
    SQLDataType.LONGVARCHAR
    SQLDataType.NCHAR
    The Types.NCHAR type.
    SQLDataType.NCLOB
    The Types.NCLOB type.
    SQLDataType.NUMERIC
    The Types.NUMERIC type.
    SQLDataType.NVARCHAR
    The Types.NVARCHAR type.
    SQLDataType.OFFSETDATETIME
    SQLDataType.OFFSETTIME
    SQLDataType.OTHER
    The Types.OTHER type.
    static DataType<Float>
    SQLDataType.REAL
    The Types.REAL type.
    SQLDataType.RECORD
    The Types.STRUCT type.
    SQLDataType.RESULT
    The ResultSet type.
    static DataType<RowId>
    SQLDataType.ROWID
    The Types.ROWID type.
    static DataType<Short>
    SQLDataType.SMALLINT
    The Types.SMALLINT type.
    SQLDataType.SMALLINTUNSIGNED
    The unsigned Types.SMALLINT type.
    static DataType<Time>
    SQLDataType.TIME
    The Types.TIME type.
    SQLDataType.TIMESTAMP
    The Types.TIMESTAMP type.
    SQLDataType.TIMEWITHTIMEZONE
    static DataType<Byte>
    SQLDataType.TINYINT
    The Types.TINYINT type.
    static DataType<UByte>
    SQLDataType.TINYINTUNSIGNED
    The unsigned Types.TINYINT type.
    static DataType<UUID>
    SQLDataType.UUID
    The UUID type.
    static DataType<byte[]>
    SQLDataType.VARBINARY
    The Types.VARBINARY type.
    SQLDataType.VARCHAR
    The Types.VARCHAR type.
    static DataType<XML>
    SQLDataType.XML
    The XML type.
    Methods in org.jooq.impl that return DataType
    Modifier and Type
    Method
    Description
    static DataType<byte[]>
    SQLDataType.BINARY​(int length)
    The Types.BINARY type.
    static DataType<byte[]>
    SQLDataType.BLOB​(int length)
    The Types.BLOB type.
    SQLDataType.CHAR​(int length)
    The Types.CHAR type.
    SQLDataType.CLOB​(int length)
    The Types.CLOB type.
    SQLDataType.DECIMAL​(int precision)
    The Types.DECIMAL type.
    SQLDataType.DECIMAL​(int precision, int scale)
    The Types.DECIMAL type.
    SQLDataType.DECIMAL_INTEGER​(int precision)
    The zero-scale Types.DECIMAL type.
    ArrayRecordImpl.getArrayType()
     
    ArrayRecordImpl.getDataType()
     
    DefaultDataType.getDataType​(Configuration configuration)
     
    static DataType<?>
    DefaultDataType.getDataType​(SQLDialect dialect, int sqlType)
     
    static <T> DataType<T>
    DefaultDataType.getDataType​(SQLDialect dialect, Class<T> type)
     
    static <T> DataType<T>
    DefaultDataType.getDataType​(SQLDialect dialect, Class<T> type, DataType<T> fallbackDataType)
     
    static DataType<?>
    DefaultDataType.getDataType​(SQLDialect dialect, String typeName)
     
    static DataType<?>
    DefaultDataType.getDataType​(SQLDialect dialect, String t, int p, int s)
    Convert a type name (using precision and scale) into a Java class
    static 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 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.
    UDTImpl.getDataType()
     
    DefaultDataType.getDefaultDataType​(String typeName)
     
    DefaultDataType.getDefaultDataType​(SQLDialect dialect, String typeName)
     
    DefaultDataType.getSQLDataType()
     
    SQLDataType.INSTANT​(int precision)
    A Types.TIMESTAMP_WITH_TIMEZONE type that uses UTC as time zone.
    SQLDataType.LOCALDATETIME​(int precision)
    The Types.TIMESTAMP type.
    SQLDataType.LOCALTIME​(int precision)
    The Types.TIME type.
    SQLDataType.LONGNVARCHAR​(int length)
    static DataType<byte[]>
    SQLDataType.LONGVARBINARY​(int length)
    SQLDataType.LONGVARCHAR​(int length)
    SQLDataType.NCHAR​(int length)
    The Types.NCHAR type.
    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.
    SQLDataType.NUMERIC​(int precision)
    The Types.NUMERIC type.
    SQLDataType.NUMERIC​(int precision, int scale)
    The Types.NUMERIC type.
    SQLDataType.NVARCHAR​(int length)
    The Types.NVARCHAR type.
    SQLDataType.OFFSETDATETIME​(int precision)
    SQLDataType.OFFSETTIME​(int precision)
    static DataType<Time>
    SQLDataType.TIME​(int precision)
    The Types.TIME type.
    SQLDataType.TIMESTAMP​(int precision)
    The Types.TIMESTAMP type.
    SQLDataType.TIMESTAMPWITHTIMEZONE​(int precision)
    SQLDataType.TIMEWITHTIMEZONE​(int precision)
    static DataType<byte[]>
    SQLDataType.VARBINARY​(int length)
    The Types.VARBINARY type.
    SQLDataType.VARCHAR​(int length)
    The Types.VARCHAR type.
    Methods in org.jooq.impl with parameters of type DataType
    Modifier and Type
    Method
    Description
    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 <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 <T> @NotNull Domain<T>
    Internal.createDomain​(Schema schema, Name name, DataType<T> type, Check<?>... checks)
    Factory method for domain specifications.
    protected static <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 <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 <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 <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 <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 <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 <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 <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 <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 <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 <T> Parameter<T>
    AbstractRoutine.createParameter​(String name, DataType<T> type)
    Deprecated.
    - Please, re-generate your routine code.
    protected static <T> Parameter<T>
    AbstractRoutine.createParameter​(String name, DataType<T> type, boolean isDefaulted)
    Deprecated.
    - Please, re-generate your routine code.
    protected static <T> Parameter<T>
    AbstractRoutine.createParameter​(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed)
    Deprecated.
    - Please, re-generate your routine code.
    protected static <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 <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 <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 <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 <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 <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 <T> @NotNull Parameter<T>
    Internal.createParameter​(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed)
    Factory method for parameters.
    static <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 <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 <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 <T extends Number>
    @NotNull Sequence<T>
    Internal.createSequence​(String name, Schema schema, DataType<T> type)
    Factory method for sequences.
    static <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.fieldByName​(DataType<T> type, String... qualifiedName)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#3843] - 3.6.0 - use DSL.field(Name, DataType) instead
    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 <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.
    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 <T> CustomField<T>
    CustomField.of​(String name, DataType<T> type, Consumer<? super Context<?>> consumer)
    Create a CustomField from a lambda expression.
    static <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 extends Number>
    @NotNull Sequence<T>
    DSL.sequenceByName​(DataType<T> type, String... qualifiedName)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#3843] - 3.6.0 - use DSL.sequence(Name, DataType) instead
    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_DOCUMENT function.
    static <T> @NotNull Field<T>
    DSL.xmlserializeDocument​(XML value, DataType<T> type)
    The XMLSERIALIZE_DOCUMENT 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
     
    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 DataType<Long>
    AccessDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigInteger>
    AccessDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    AccessDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AccessDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    AccessDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    AccessDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Date>
    AccessDataType.__DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    AccessDataType.__DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    AccessDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    AccessDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    AccessDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    AccessDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AccessDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    AccessDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Time>
    AccessDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AccessDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AccessDataType.__VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AccessDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.COUNTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AccessDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.LONGCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    AccessDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    AccessDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AccessDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    AccessDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static 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 DataType<BigInteger>
    ASEDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    ASEDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    ASEDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    ASEDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    ASEDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    ASEDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    ASEDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    ASEDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.BIGDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    ASEDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    ASEDataType.BIGTIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ASEDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    ASEDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ASEDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.LONGSYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    ASEDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    ASEDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.SYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    ASEDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    ASEDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.UNICHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.UNITEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.UNIVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    ASEDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ASEDataType.UNSIGNEDINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    ASEDataType.UNSIGNEDSMALLLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ASEDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    AuroraMySQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraMySQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AuroraMySQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraMySQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraMySQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraMySQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    AuroraMySQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraMySQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    AuroraMySQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraMySQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<ULong>
    AuroraMySQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    AuroraMySQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    AuroraMySQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    AuroraMySQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    AuroraMySQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    AuroraMySQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    AuroraMySQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraMySQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraMySQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    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 DataType<BigInteger>
    AuroraPostgresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    AuroraPostgresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AuroraPostgresDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    AuroraPostgresDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    AuroraPostgresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraPostgresDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AuroraPostgresDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraPostgresDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraPostgresDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraPostgresDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    AuroraPostgresDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    AuroraPostgresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    AuroraPostgresDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    AuroraPostgresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    AuroraPostgresDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    AuroraPostgresDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    AuroraPostgresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    AuroraPostgresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    AuroraPostgresDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    AuroraPostgresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    AuroraPostgresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    AuroraPostgresDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    AuroraPostgresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    AuroraPostgresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    AuroraPostgresDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    AuroraPostgresDataType.VOID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static 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 DataType<BigInteger>
    BigQueryDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    BigQueryDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    BigQueryDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    BigQueryDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    BigQueryDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    BigQueryDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    BigQueryDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    BigQueryDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    BigQueryDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    BigQueryDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    BigQueryDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    BigQueryDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    BigQueryDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    BigQueryDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    BigQueryDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    BigQueryDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    BigQueryDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    BigQueryDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    BigQueryDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    BigQueryDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    CockroachDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    CockroachDBDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    CockroachDBDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    CockroachDBDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    CockroachDBDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CockroachDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    CockroachDBDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CockroachDBDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CockroachDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CockroachDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CockroachDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    CockroachDBDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    CockroachDBDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    CockroachDBDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    CockroachDBDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CockroachDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CockroachDBDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CockroachDBDataType.BYTES
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    CockroachDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    CockroachDBDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CockroachDBDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    CockroachDBDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSONB>
    CockroachDBDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    CockroachDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CockroachDBDataType.SERIAL2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CockroachDBDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CockroachDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CockroachDBDataType.SMALLSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.STRING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    CockroachDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    CockroachDBDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    CockroachDBDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CockroachDBDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    CUBRIDDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    CUBRIDDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    CUBRIDDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    CUBRIDDataType.__BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    CUBRIDDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    CUBRIDDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CUBRIDDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    CUBRIDDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CUBRIDDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CUBRIDDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    CUBRIDDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    CUBRIDDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    CUBRIDDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    CUBRIDDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    CUBRIDDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    CUBRIDDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    CUBRIDDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CUBRIDDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CUBRIDDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CUBRIDDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    CUBRIDDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.ELO
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    CUBRIDDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.MONETARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.MULTISET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    CUBRIDDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.SEQUENCE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CUBRIDDataType.SHORT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    CUBRIDDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.STRING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    CUBRIDDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    CUBRIDDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    CUBRIDDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    DB2DataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DB2DataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    DB2DataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    DB2DataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    DB2DataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    DB2DataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DB2DataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DB2DataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DB2DataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DB2DataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    DB2DataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DB2DataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    DB2DataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    DB2DataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DB2DataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    DB2DataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DB2DataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DB2DataType.CHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    DB2DataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.DBCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.DECFLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.GRAPHIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    DB2DataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DB2DataType.ROWID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    DB2DataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    DB2DataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DB2DataType.VARCHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DB2DataType.VARGRAPHIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    DerbyDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    DerbyDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DerbyDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    DerbyDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    DerbyDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    DerbyDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    DerbyDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DerbyDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DerbyDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DerbyDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DerbyDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    DerbyDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    DerbyDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    DerbyDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    DerbyDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    DerbyDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    DerbyDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    DerbyDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.CHARACTERFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.CHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CHARVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.CHARVARYINGFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    DerbyDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.JAVAIOSERIALIZABLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    DerbyDataType.LONGVARCHARFORBITDATA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    DerbyDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    DerbyDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    DerbyDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    DerbyDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static 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 DataType<BigInteger>
    ExasolDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    ExasolDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    ExasolDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    ExasolDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Result<Record>>
    ExasolDataType.__RESULT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    ExasolDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    ExasolDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    ExasolDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    ExasolDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    ExasolDataType.IDENTITY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    ExasolDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    ExasolDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    ExasolDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSONB>
    ExasolDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    ExasolDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.SIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    ExasolDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    ExasolDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    ExasolDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    ExasolDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    ExasolDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.VARCHAR_CASESENSITIVE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    ExasolDataType.VARCHAR_IGNORECASE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    ExasolDataType.YEAR
    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 DataType<BigInteger>
    FirebirdDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    FirebirdDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    FirebirdDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    FirebirdDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    FirebirdDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    FirebirdDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    FirebirdDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    FirebirdDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    FirebirdDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    FirebirdDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    FirebirdDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    FirebirdDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    FirebirdDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    FirebirdDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    FirebirdDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    FirebirdDataType.BLOBSUBTYPE0
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.BLOBSUBTYPE1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    FirebirdDataType.BLOBSUBTYPEBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    FirebirdDataType.BLOBSUBTYPETEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.D_FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    FirebirdDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    FirebirdDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    FirebirdDataType.INT64
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    FirebirdDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    FirebirdDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    FirebirdDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    H2DataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    H2DataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    H2DataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Result<Record>>
    H2DataType.__RESULT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    H2DataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    H2DataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    H2DataType.IDENTITY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    H2DataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    H2DataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    H2DataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSONB>
    H2DataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    H2DataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.SIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    H2DataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    H2DataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    H2DataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    H2DataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    H2DataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    H2DataType.VARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    H2DataType.YEAR
    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 DataType<BigInteger>
    HanaDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    HanaDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    HanaDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    HanaDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    HanaDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HanaDataType.__CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    HanaDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    HanaDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    HanaDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    HanaDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HanaDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HanaDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HanaDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HanaDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    HanaDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    HanaDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    HanaDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    HanaDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    HanaDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HanaDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HanaDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    HanaDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    HanaDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    HanaDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    HanaDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HanaDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    HanaDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HanaDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    HSQLDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    HSQLDBDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    HSQLDBDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    HSQLDBDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    HSQLDBDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HSQLDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HSQLDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HSQLDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    HSQLDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    HSQLDBDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    HSQLDBDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    HSQLDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HSQLDBDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HSQLDBDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HSQLDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    HSQLDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HSQLDBDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    HSQLDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.ROW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    HSQLDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    HSQLDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    HSQLDBDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    HSQLDBDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    HSQLDBDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    HSQLDBDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    HSQLDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    IgniteDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    IgniteDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    IgniteDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    IgniteDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    IgniteDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    IgniteDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IgniteDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IgniteDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    IgniteDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IgniteDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    IgniteDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    IgniteDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    IgniteDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IgniteDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    IgniteDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    IgniteDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IgniteDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    InformixDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    InformixDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    InformixDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    InformixDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    InformixDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    InformixDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    InformixDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    InformixDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    InformixDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Time>
    InformixDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    InformixDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    InformixDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    InformixDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    InformixDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    InformixDataType.BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    InformixDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    InformixDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.LVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    InformixDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    InformixDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    InformixDataType.SMALLFLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    InformixDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    InformixDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    IngresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    IngresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    IngresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    IngresDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    IngresDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    IngresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    IngresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    IngresDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    IngresDataType.ANSIDATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    IngresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.BINARYLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.C
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    IngresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    IngresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    IngresDataType.I1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    IngresDataType.I2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.I4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    IngresDataType.I8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    IngresDataType.INGRESDATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    IngresDataType.INTEGER1
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    IngresDataType.INTEGER2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.INTEGER4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    IngresDataType.INTEGER8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.LONGBYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.NCHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    IngresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    IngresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    IngresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    IngresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    IngresDataType.TIMEWITHLOCALTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    IngresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    IngresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    IngresDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    IngresDataType.VARBYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    MariaDBDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    MariaDBDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MariaDBDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    MariaDBDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MariaDBDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MariaDBDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MariaDBDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    MariaDBDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MariaDBDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    MariaDBDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    MariaDBDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<ULong>
    MariaDBDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    MariaDBDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    MariaDBDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    MariaDBDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    MariaDBDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    MariaDBDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    MariaDBDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    MariaDBDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MariaDBDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MariaDBDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    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 DataType<BigInteger>
    MemSQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    MemSQLDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    MemSQLDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MemSQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    MemSQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MemSQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MemSQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MemSQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    MemSQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MemSQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    MemSQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    MemSQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<ULong>
    MemSQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    MemSQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    MemSQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    MemSQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    MemSQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    MemSQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    MemSQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MemSQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MemSQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    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 DataType<BigInteger>
    MySQLDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    MySQLDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MySQLDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    MySQLDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MySQLDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MySQLDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MySQLDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigDecimal>
    MySQLDataType.__NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    MySQLDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    MySQLDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    MySQLDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<ULong>
    MySQLDataType.BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    MySQLDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.ENUM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.INTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    MySQLDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.LONGBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.LONGTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.MEDIUMBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.MEDIUMINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.MEDIUMTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    MySQLDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.SET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    MySQLDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    MySQLDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.TINYBLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    MySQLDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    MySQLDataType.TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.TINYTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    MySQLDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    MySQLDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    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 DataType<Long>
    OracleDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigInteger>
    OracleDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    OracleDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    OracleDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    OracleDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    OracleDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    OracleDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    OracleDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Integer>
    OracleDataType.__INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    OracleDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    OracleDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    OracleDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    OracleDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Float>
    OracleDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Short>
    OracleDataType.__SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    OracleDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Time>
    OracleDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<OffsetDateTime>
    OracleDataType.__TIMESTAMPWITHTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<OffsetTime>
    OracleDataType.__TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    OracleDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    OracleDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    OracleDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    OracleDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    OracleDataType.BFILE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.BINARY_DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    OracleDataType.BINARY_FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.BINARY_INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    OracleDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    OracleDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.DEC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.DOUBLE_PRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.LONG
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    OracleDataType.LONGRAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NATURAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NATURALN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.NVARCHAR2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.PLS_BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.PLS_INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.POSITIVE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.POSITIVEN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    OracleDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.REF_CURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.SIGNTYPE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    OracleDataType.VARCHAR2
    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 DataType<BigInteger>
    PostgresDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    PostgresDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    PostgresDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    PostgresDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    PostgresDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    PostgresDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    PostgresDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    PostgresDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    PostgresDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    PostgresDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    PostgresDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    PostgresDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    PostgresDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    PostgresDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    PostgresDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    PostgresDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    PostgresDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    PostgresDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    PostgresDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSON>
    PostgresDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<JSONB>
    PostgresDataType.JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    PostgresDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    PostgresDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    PostgresDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    PostgresDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    PostgresDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    PostgresDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    PostgresDataType.VOID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static 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 DataType<BigInteger>
    RedshiftDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    RedshiftDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    RedshiftDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    RedshiftDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    RedshiftDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    RedshiftDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    RedshiftDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    RedshiftDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    RedshiftDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    RedshiftDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    RedshiftDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    RedshiftDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    RedshiftDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    RedshiftDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    RedshiftDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.ACLITEM
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.ANY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.BIGSERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.BITVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.BOOL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.BPCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    RedshiftDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.CHARACTERVARYING
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.CID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    RedshiftDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    RedshiftDataType.FLOAT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.FLOAT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    RedshiftDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INT4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INTERVAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INTERVALDAYTOSECOND
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.INTERVALYEARTOMONTH
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.NAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.OID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.OIDVECTOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    RedshiftDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.REFCURSOR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.REGPROC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.SERIAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.SERIAL4
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.SERIAL8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    RedshiftDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    RedshiftDataType.TID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    RedshiftDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    RedshiftDataType.TIMETZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    RedshiftDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    RedshiftDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    RedshiftDataType.UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    RedshiftDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static 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 DataType<Long>
    SnowflakeDataType.__BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<BigInteger>
    SnowflakeDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    SnowflakeDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    SnowflakeDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    SnowflakeDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Integer>
    SnowflakeDataType.__INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    SnowflakeDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SnowflakeDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SnowflakeDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SnowflakeDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SnowflakeDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SnowflakeDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SnowflakeDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Float>
    SnowflakeDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Short>
    SnowflakeDataType.__SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    SnowflakeDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Time>
    SnowflakeDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    SnowflakeDataType.__TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    SnowflakeDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SnowflakeDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SnowflakeDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    SnowflakeDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SnowflakeDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    SnowflakeDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMP_LTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMP_TZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMPTZ
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMPWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    SnowflakeDataType.TIMEWITHOUTTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SnowflakeDataType.VARCHAR
    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 DataType<BigInteger>
    SQLDataWarehouseDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    SQLDataWarehouseDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLDataWarehouseDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    SQLDataWarehouseDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    SQLDataWarehouseDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    SQLDataWarehouseDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    SQLDataWarehouseDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLDataWarehouseDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLDataWarehouseDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLDataWarehouseDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLDataWarehouseDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    SQLDataWarehouseDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLDataWarehouseDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLDataWarehouseDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    SQLDataWarehouseDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.DATETIME2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLDataWarehouseDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SQLDataWarehouseDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLDataWarehouseDataType.ROWVERSION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    SQLDataWarehouseDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLDataWarehouseDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    SQLDataWarehouseDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLDataWarehouseDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    SQLDataWarehouseDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    SQLDataWarehouseDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLDataWarehouseDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<ULong>
    SQLiteDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLiteDataType.__BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    SQLiteDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    SQLiteDataType.__FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    SQLiteDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    SQLiteDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    SQLiteDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLiteDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLiteDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    SQLiteDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Time>
    SQLiteDataType.__TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    SQLiteDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    SQLiteDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLiteDataType.__VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLiteDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLiteDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.CHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    SQLiteDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SQLiteDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    SQLiteDataType.INT2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLiteDataType.INT8
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLiteDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.MEDIUMINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.NATIVECHARACTER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.NULL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SQLiteDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    SQLiteDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    SQLiteDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLiteDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    SQLServerDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    SQLServerDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLServerDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    SQLServerDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    SQLServerDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Double>
    SQLServerDataType.__DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    SQLServerDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLServerDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SQLServerDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLServerDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    SQLServerDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    SQLServerDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLServerDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLServerDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    SQLServerDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.DATETIME2
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLServerDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SQLServerDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SQLServerDataType.ROWVERSION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    SQLServerDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.SYSNAME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SQLServerDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    SQLServerDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLServerDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    SQLServerDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    SQLServerDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SQLServerDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    SybaseDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    SybaseDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    SybaseDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    SybaseDataType.__BYTE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Byte>
    SybaseDataType.__BYTESIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    SybaseDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    SybaseDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    SybaseDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    SybaseDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.DATETIMEOFFSET
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.IMAGE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.LONGBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.LONGVARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.MONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    SybaseDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    SybaseDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.SMALLMONEY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.TEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    SybaseDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    SybaseDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UUID>
    SybaseDataType.UNIQUEIDENTIFIER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.UNIQUEIDENTIFIERSTR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<ULong>
    SybaseDataType.UNSIGNEDBIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.UNSIGNEDINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.UNSIGNEDSMALLLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<UByte>
    SybaseDataType.UNSIGNEDTINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    SybaseDataType.VARBIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    SybaseDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    TeradataDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    TeradataDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    TeradataDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    TeradataDataType.__BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    TeradataDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    TeradataDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    TeradataDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    TeradataDataType.__LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__NTEXT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    TeradataDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Float>
    TeradataDataType.__REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    TeradataDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    TeradataDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    TeradataDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    TeradataDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    TeradataDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    TeradataDataType.BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    TeradataDataType.BYTEINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    TeradataDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.DOUBLE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.INSTANT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.NUMBER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    TeradataDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    TeradataDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.TIMESTAMPWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    TeradataDataType.TIMEWITHTIMEZONE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    TeradataDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    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 DataType<BigInteger>
    VerticaDataType.__BIGINTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<ULong>
    VerticaDataType.__BIGINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<Boolean>
    VerticaDataType.__BIT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<byte[]>
    VerticaDataType.__BLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__CHARACTERLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__CHARLARGEOBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__CLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UInteger>
    VerticaDataType.__INTEGERUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSON>
    VerticaDataType.__JSON
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<JSONB>
    VerticaDataType.__JSONB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__LONGNVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__NCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__NCLOB
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<String>
    VerticaDataType.__NVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UShort>
    VerticaDataType.__SMALLINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UByte>
    VerticaDataType.__TINYINTUNSIGNED
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    protected static DataType<UUID>
    VerticaDataType.__UUID
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Long>
    VerticaDataType.BIGINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    VerticaDataType.BINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.BOOLEAN
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    VerticaDataType.BYTEA
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.CHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Date>
    VerticaDataType.DATE
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.DATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.DECIMAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.DOUBLEPRECISION
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.FLOAT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.INT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.INTEGER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    VerticaDataType.LONGVARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.LONGVARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.NUMERIC
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.OBJECT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.OTHER
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    VerticaDataType.RAW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Float>
    VerticaDataType.REAL
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.ROW
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.SMALLDATETIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Short>
    VerticaDataType.SMALLINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Time>
    VerticaDataType.TIME
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.TIMESTAMP
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<Byte>
    VerticaDataType.TINYINT
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static DataType<byte[]>
    VerticaDataType.VARBINARY
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.VARCHAR
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    VerticaDataType.VARCHARIGNORECASE
    Deprecated, for removal: This API element is subject to removal in a future version.