public static enum Reader.ColumnTypes extends java.lang.Enum<Reader.ColumnTypes>
| Enum Constant and Description |
|---|
Boolean |
Date |
DateTime |
Double |
Long |
String |
Time |
| Modifier and Type | Method and Description |
|---|---|
static Reader.ColumnTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reader.ColumnTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reader.ColumnTypes Boolean
public static final Reader.ColumnTypes Date
public static final Reader.ColumnTypes DateTime
public static final Reader.ColumnTypes Double
public static final Reader.ColumnTypes Long
public static final Reader.ColumnTypes String
public static final Reader.ColumnTypes Time
public static Reader.ColumnTypes[] values()
for (Reader.ColumnTypes c : Reader.ColumnTypes.values()) System.out.println(c);
public static Reader.ColumnTypes 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 null