public static enum TableColumnDataType.DataType extends java.lang.Enum<TableColumnDataType.DataType>
Enum Constant and Description |
---|
BINARY_LARGE |
BINARY_VARIABLE |
BOOLEAN |
DATE |
NUMBER |
TEXT_FIXED |
TEXT_LARGE |
TEXT_VARIABLE |
Modifier and Type | Method and Description |
---|---|
static TableColumnDataType.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableColumnDataType.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableColumnDataType.DataType TEXT_VARIABLE
public static final TableColumnDataType.DataType TEXT_FIXED
public static final TableColumnDataType.DataType TEXT_LARGE
public static final TableColumnDataType.DataType NUMBER
public static final TableColumnDataType.DataType DATE
public static final TableColumnDataType.DataType BOOLEAN
public static final TableColumnDataType.DataType BINARY_LARGE
public static final TableColumnDataType.DataType BINARY_VARIABLE
public static TableColumnDataType.DataType[] values()
for (TableColumnDataType.DataType c : TableColumnDataType.DataType.values()) System.out.println(c);
public static TableColumnDataType.DataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null