private static enum PatternParser.ParserState extends java.lang.Enum<PatternParser.ParserState>
Enum Constant and Description |
---|
CONVERTER_STATE
In converter name state.
|
DOT_STATE
Dot state.
|
LITERAL_STATE
Literal state.
|
MAX_STATE
Max state.
|
MIN_STATE
Min state.
|
Modifier and Type | Method and Description |
---|---|
static PatternParser.ParserState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PatternParser.ParserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatternParser.ParserState LITERAL_STATE
public static final PatternParser.ParserState CONVERTER_STATE
public static final PatternParser.ParserState DOT_STATE
public static final PatternParser.ParserState MIN_STATE
public static final PatternParser.ParserState MAX_STATE
public static PatternParser.ParserState[] values()
for (PatternParser.ParserState c : PatternParser.ParserState.values()) System.out.println(c);
public static PatternParser.ParserState 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