public static enum Column.Type extends Enum<Column.Type>
Enum Constant and Description |
---|
BOOLEAN
The data type for the column is a boolean.
|
DATE
The data type for the column is a date.
|
ENUM
The data type for the column is an enumeration of ordinal values.
|
INTEGER
The data type for the column is an integer.
|
LONG
The data type for the column is a long.
|
STRING
The data type for the column is a character-based string.
|
Modifier and Type | Method and Description |
---|---|
static Column.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Column.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.Type BOOLEAN
public static final Column.Type STRING
public static final Column.Type LONG
long
value between
-263 and 263-1.public static final Column.Type INTEGER
public static final Column.Type DATE
public static final Column.Type ENUM
public static Column.Type[] values()
for (Column.Type c : Column.Type.values()) System.out.println(c);
public static Column.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 (c) 2020, SAS Institute Inc., Cary, NC, USA