public static enum CSVSchemaColumn.ColumnType extends Enum<CSVSchemaColumn.ColumnType>
| Modifier and Type | Method and Description |
|---|---|
static CSVSchemaColumn.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVSchemaColumn.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVSchemaColumn.ColumnType NUMERIC
public static final CSVSchemaColumn.ColumnType DATE
public static final CSVSchemaColumn.ColumnType NOMINAL
public static CSVSchemaColumn.ColumnType[] values()
for (CSVSchemaColumn.ColumnType c : CSVSchemaColumn.ColumnType.values()) System.out.println(c);
public static CSVSchemaColumn.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 nullCopyright © 2015. All rights reserved.