public static enum DataType.Type extends Enum<DataType.Type>
| Enum Constant and Description |
|---|
COLUMN |
COLUMN_LIST |
ENUM |
FILE |
LIST |
PRIMITIVE |
TABULAR |
TABULAR_LIST |
| Modifier and Type | Method and Description |
|---|---|
static DataType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType.Type TABULAR
public static final DataType.Type FILE
public static final DataType.Type PRIMITIVE
public static final DataType.Type LIST
public static final DataType.Type ENUM
public static final DataType.Type TABULAR_LIST
public static final DataType.Type COLUMN_LIST
public static final DataType.Type COLUMN
public static DataType.Type[] values()
for (DataType.Type c : DataType.Type.values()) System.out.println(c);
public static DataType.Type 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 © 2016. All Rights Reserved.