private static enum CurrentParsingState.State extends java.lang.Enum<CurrentParsingState.State>
Enum Constant and Description |
---|
ALPHA |
ISO_IEC_646 |
NUMERIC |
Modifier and Type | Method and Description |
---|---|
static CurrentParsingState.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CurrentParsingState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurrentParsingState.State NUMERIC
public static final CurrentParsingState.State ALPHA
public static final CurrentParsingState.State ISO_IEC_646
public static CurrentParsingState.State[] values()
for (CurrentParsingState.State c : CurrentParsingState.State.values()) System.out.println(c);
public static CurrentParsingState.State 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