public enum DataTypeCode extends Enum<DataTypeCode> implements IAEnum
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DATETIME |
DECIMAL |
DFLOAT |
INT16 |
INT32 |
INT64 |
INT8 |
QFLOAT |
SFLOAT |
STRING |
TIME |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static DataTypeCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataTypeCode BOOLEAN
public static final DataTypeCode DATE
public static final DataTypeCode DATETIME
public static final DataTypeCode DECIMAL
public static final DataTypeCode DFLOAT
public static final DataTypeCode INT8
public static final DataTypeCode INT16
public static final DataTypeCode INT32
public static final DataTypeCode INT64
public static final DataTypeCode SFLOAT
public static final DataTypeCode QFLOAT
public static final DataTypeCode TIME
public static final DataTypeCode STRING
public static DataTypeCode[] values()
for (DataTypeCode c : DataTypeCode.values()) System.out.println(c);
public static DataTypeCode 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 © 2018–2021 ODPi. All rights reserved.