public static enum Parser.ColType extends java.lang.Enum<Parser.ColType>
| Enum Constant and Description |
|---|
ENUM |
INVALID |
NUM |
STR |
TIME |
UNKNOWN |
UUID |
| Modifier and Type | Method and Description |
|---|---|
static Parser.ColType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parser.ColType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.ColType UNKNOWN
public static final Parser.ColType NUM
public static final Parser.ColType ENUM
public static final Parser.ColType TIME
public static final Parser.ColType UUID
public static final Parser.ColType STR
public static final Parser.ColType INVALID
public static Parser.ColType[] values()
for (Parser.ColType c : Parser.ColType.values()) System.out.println(c);
public static Parser.ColType 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