public static enum Column.ColumnType extends 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 |
|---|---|
boolean |
equals(String otherColumnType)
Equals.
|
static Column.ColumnType |
fromString(String text)
From string.
|
String |
toString() |
static Column.ColumnType |
valueOf(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(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 nullpublic static Column.ColumnType fromString(String text)
text - the textpublic boolean equals(String otherColumnType)
otherColumnType - the other column typepublic String toString()
toString in class Enum<Column.ColumnType>Copyright © 2015. All rights reserved.