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