public static enum DataType.ExaDataType extends Enum<DataType.ExaDataType>
| Enum Constant and Description |
|---|
BOOLEAN |
CHAR |
DATE |
DECIMAL |
DOUBLE |
GEOMETRY |
INTERVAL |
TIMESTAMP |
UNSUPPORTED |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static DataType.ExaDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType.ExaDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType.ExaDataType UNSUPPORTED
public static final DataType.ExaDataType DECIMAL
public static final DataType.ExaDataType DOUBLE
public static final DataType.ExaDataType VARCHAR
public static final DataType.ExaDataType CHAR
public static final DataType.ExaDataType DATE
public static final DataType.ExaDataType TIMESTAMP
public static final DataType.ExaDataType BOOLEAN
public static final DataType.ExaDataType GEOMETRY
public static final DataType.ExaDataType INTERVAL
public static DataType.ExaDataType[] values()
for (DataType.ExaDataType c : DataType.ExaDataType.values()) System.out.println(c);
public static DataType.ExaDataType 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 nullCopyright © 2019. All rights reserved.