public enum R2dbcType extends Enum<R2dbcType> implements Type
Type.InferredType
Enum Constant and Description |
---|
BIGINT
Identifies the generic SQL type
BIGINT . |
BINARY
Identifies the generic SQL type
BINARY . |
BLOB
Identifies the generic SQL type
BLOB . |
BOOLEAN
Identifies the generic SQL type
BOOLEAN . |
CHAR
Identifies the generic SQL type
CHAR . |
CLOB
Identifies the generic SQL type
CLOB . |
COLLECTION
Identifies the generic SQL type
ARRAY . |
DATE
Identifies the generic SQL type
DATE . |
DECIMAL
Identifies the generic SQL type
DECIMAL . |
DOUBLE
Identifies the generic SQL type
DOUBLE . |
FLOAT
Identifies the generic SQL type
FLOAT . |
INTEGER
Identifies the generic SQL type
INTEGER . |
NCHAR
Identifies the generic SQL type
NCHAR . |
NCLOB
Identifies the generic SQL type
NCLOB . |
NUMERIC
Identifies the generic SQL type
NUMERIC . |
NVARCHAR
Identifies the generic SQL type
NVARCHAR . |
REAL
Identifies the generic SQL type
REAL . |
SMALLINT
Identifies the generic SQL type
SMALLINT . |
TIME
Identifies the generic SQL type
TIME . |
TIME_WITH_TIME_ZONE
Identifies the generic SQL type
TIME WITH TIME ZONE . |
TIMESTAMP
Identifies the generic SQL type
TIMESTAMP . |
TIMESTAMP_WITH_TIME_ZONE
Identifies the generic SQL type
TIMESTAMP WITH TIME ZONE . |
TINYINT
Identifies the generic SQL type
TINYINT . |
VARBINARY
Identifies the generic SQL type
VARBINARY . |
VARCHAR
Identifies the generic SQL type
VARCHAR . |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getJavaType() |
String |
getName() |
static R2dbcType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static R2dbcType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final R2dbcType CHAR
CHAR
.public static final R2dbcType VARCHAR
VARCHAR
.public static final R2dbcType NCHAR
NCHAR
.public static final R2dbcType NVARCHAR
NVARCHAR
.public static final R2dbcType CLOB
CLOB
.
Note that drivers may default to Clob
if materializing a CLOB
value requires additional database communication.public static final R2dbcType NCLOB
NCLOB
.
Note that drivers may default to Clob
if materializing a NCLOB
value requires additional database communication.public static final R2dbcType BOOLEAN
BOOLEAN
.public static final R2dbcType BINARY
BINARY
.public static final R2dbcType VARBINARY
VARBINARY
.public static final R2dbcType BLOB
BLOB
.
Note that drivers may default to Blob
if materializing a BLOB
value requires additional database communication.public static final R2dbcType INTEGER
INTEGER
.public static final R2dbcType TINYINT
TINYINT
.public static final R2dbcType SMALLINT
SMALLINT
.public static final R2dbcType BIGINT
BIGINT
.public static final R2dbcType NUMERIC
NUMERIC
.public static final R2dbcType DECIMAL
DECIMAL
.public static final R2dbcType FLOAT
FLOAT
.public static final R2dbcType REAL
REAL
.public static final R2dbcType DOUBLE
DOUBLE
.public static final R2dbcType DATE
DATE
.public static final R2dbcType TIME
TIME
.public static final R2dbcType TIME_WITH_TIME_ZONE
TIME WITH TIME ZONE
.public static final R2dbcType TIMESTAMP
TIMESTAMP
.public static final R2dbcType TIMESTAMP_WITH_TIME_ZONE
TIMESTAMP WITH TIME ZONE
.public static final R2dbcType COLLECTION
ARRAY
.public static R2dbcType[] values()
for (R2dbcType c : R2dbcType.values()) System.out.println(c);
public static R2dbcType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic Class<?> getJavaType()
getJavaType
in interface Type
Copyright © 2021. All rights reserved.