public static enum AdaShallowParser.EAdaParserStates extends java.lang.Enum<AdaShallowParser.EAdaParserStates>
Enum Constant and Description |
---|
DECLARATIONS
A state to recognize declarations.
|
STATEMENTS
A state to recognize statements.
|
Modifier and Type | Method and Description |
---|---|
static AdaShallowParser.EAdaParserStates |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdaShallowParser.EAdaParserStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdaShallowParser.EAdaParserStates DECLARATIONS
public static final AdaShallowParser.EAdaParserStates STATEMENTS
public static AdaShallowParser.EAdaParserStates[] values()
for (AdaShallowParser.EAdaParserStates c : AdaShallowParser.EAdaParserStates.values()) System.out.println(c);
public static AdaShallowParser.EAdaParserStates 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