public enum R2dbcType extends Enum<R2dbcType> implements Type
Type.InferredType| Enum Constant and Description | 
|---|
| BIGINTIdentifies the generic SQL type  BIGINT. | 
| BINARYIdentifies the generic SQL type  BINARY. | 
| BLOBIdentifies the generic SQL type  BLOB. | 
| BOOLEANIdentifies the generic SQL type  BOOLEAN. | 
| CHARIdentifies the generic SQL type  CHAR. | 
| CLOBIdentifies the generic SQL type  CLOB. | 
| COLLECTIONIdentifies the generic SQL type  ARRAY. | 
| DATEIdentifies the generic SQL type  DATE. | 
| DECIMALIdentifies the generic SQL type  DECIMAL. | 
| DOUBLEIdentifies the generic SQL type  DOUBLE. | 
| FLOATIdentifies the generic SQL type  FLOAT. | 
| INTEGERIdentifies the generic SQL type  INTEGER. | 
| NCHARIdentifies the generic SQL type  NCHAR. | 
| NCLOBIdentifies the generic SQL type  NCLOB. | 
| NUMERICIdentifies the generic SQL type  NUMERIC. | 
| NVARCHARIdentifies the generic SQL type  NVARCHAR. | 
| REALIdentifies the generic SQL type  REAL. | 
| SMALLINTIdentifies the generic SQL type  SMALLINT. | 
| TIMEIdentifies the generic SQL type  TIME. | 
| TIME_WITH_TIME_ZONEIdentifies the generic SQL type  TIME WITH TIME ZONE. | 
| TIMESTAMPIdentifies the generic SQL type  TIMESTAMP. | 
| TIMESTAMP_WITH_TIME_ZONEIdentifies the generic SQL type  TIMESTAMP WITH TIME ZONE. | 
| TINYINTIdentifies the generic SQL type  TINYINT. | 
| VARBINARYIdentifies the generic SQL type  VARBINARY. | 
| VARCHARIdentifies 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 TypeCopyright © 2022. All rights reserved.