public enum ColumnType extends java.lang.Enum<ColumnType>
Column
Enum Constant and Description |
---|
BOOLEAN |
CATEGORY |
DOUBLE |
FLOAT |
INTEGER |
LOCAL_DATE |
LOCAL_DATE_TIME |
LOCAL_TIME |
LONG_INT |
SHORT_INT |
SKIP |
Modifier and Type | Method and Description |
---|---|
java.lang.Comparable |
getMissingValue() |
static ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnType BOOLEAN
public static final ColumnType CATEGORY
public static final ColumnType FLOAT
public static final ColumnType DOUBLE
public static final ColumnType SHORT_INT
public static final ColumnType INTEGER
public static final ColumnType LONG_INT
public static final ColumnType LOCAL_DATE
public static final ColumnType LOCAL_DATE_TIME
public static final ColumnType LOCAL_TIME
public static final ColumnType SKIP
public static ColumnType[] values()
for (ColumnType c : ColumnType.values()) System.out.println(c);
public static 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 java.lang.Comparable getMissingValue()