public static enum FortranShallowParser.EFortranParserStates extends java.lang.Enum<FortranShallowParser.EFortranParserStates>
Enum Constant and Description |
---|
IN_ENUM
Inside a enum declaration.
|
IN_METHOD
Inside a method's body.
|
IN_MODULE
Inside a module.
|
IN_SELECT
Inside a select statement.
|
IN_TYPE
Inside a type declaration.
|
TOP_LEVEL
Top-level state.
|
Modifier and Type | Method and Description |
---|---|
static FortranShallowParser.EFortranParserStates |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FortranShallowParser.EFortranParserStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FortranShallowParser.EFortranParserStates TOP_LEVEL
public static final FortranShallowParser.EFortranParserStates IN_MODULE
public static final FortranShallowParser.EFortranParserStates IN_TYPE
public static final FortranShallowParser.EFortranParserStates IN_ENUM
public static final FortranShallowParser.EFortranParserStates IN_METHOD
public static final FortranShallowParser.EFortranParserStates IN_SELECT
public static FortranShallowParser.EFortranParserStates[] values()
for (FortranShallowParser.EFortranParserStates c : FortranShallowParser.EFortranParserStates.values()) System.out.println(c);
public static FortranShallowParser.EFortranParserStates 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