Package org.mariadb.r2dbc.codec
Enum DataType
- java.lang.Object
-
- java.lang.Enum<DataType>
-
- org.mariadb.r2dbc.codec.DataType
-
- All Implemented Interfaces:
Serializable,Comparable<DataType>
public enum DataType extends Enum<DataType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataTypefromServer(int typeValue, int charsetNumber)Convert server Type to server type.shortget()static DataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OLDDECIMAL
public static final DataType OLDDECIMAL
-
TINYINT
public static final DataType TINYINT
-
SMALLINT
public static final DataType SMALLINT
-
INTEGER
public static final DataType INTEGER
-
FLOAT
public static final DataType FLOAT
-
DOUBLE
public static final DataType DOUBLE
-
NULL
public static final DataType NULL
-
TIMESTAMP
public static final DataType TIMESTAMP
-
BIGINT
public static final DataType BIGINT
-
MEDIUMINT
public static final DataType MEDIUMINT
-
DATE
public static final DataType DATE
-
TIME
public static final DataType TIME
-
DATETIME
public static final DataType DATETIME
-
YEAR
public static final DataType YEAR
-
NEWDATE
public static final DataType NEWDATE
-
TEXT
public static final DataType TEXT
-
BIT
public static final DataType BIT
-
JSON
public static final DataType JSON
-
DECIMAL
public static final DataType DECIMAL
-
ENUM
public static final DataType ENUM
-
SET
public static final DataType SET
-
TINYBLOB
public static final DataType TINYBLOB
-
MEDIUMBLOB
public static final DataType MEDIUMBLOB
-
LONGBLOB
public static final DataType LONGBLOB
-
BLOB
public static final DataType BLOB
-
VARSTRING
public static final DataType VARSTRING
-
STRING
public static final DataType STRING
-
GEOMETRY
public static final DataType GEOMETRY
-
-
Method Detail
-
values
public static DataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataType c : DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
get
public short get()
-
fromServer
public static DataType fromServer(int typeValue, int charsetNumber)
Convert server Type to server type.- Parameters:
typeValue- type valuecharsetNumber- charset- Returns:
- MariaDb type
-
-