public static enum Column.ColumnType extends java.lang.Enum<Column.ColumnType>
| Enum Constant and Description |
|---|
CATEGORICAL
The categorical.
|
DATETIME
The datetime.
|
NUMERIC
The numeric.
|
TEXT
The text.
|
| Modifier and Type | Method and Description |
|---|---|
static Column.ColumnType |
fromString(java.lang.String text)
From string.
|
java.lang.String |
toString() |
static Column.ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Column.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.ColumnType CATEGORICAL
public static final Column.ColumnType DATETIME
public static final Column.ColumnType NUMERIC
public static final Column.ColumnType TEXT
public static Column.ColumnType[] values()
for (Column.ColumnType c : Column.ColumnType.values()) System.out.println(c);
public static Column.ColumnType 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 nullpublic static Column.ColumnType fromString(java.lang.String text)
text - the textpublic java.lang.String toString()
toString in class java.lang.Enum<Column.ColumnType>