public static enum PythonShallowParser.EPythonParserStates extends java.lang.Enum<PythonShallowParser.EPythonParserStates>
Enum Constant and Description |
---|
ANY
Any state apart from in-class states.
|
IN_CLASS
State applying within a class scope.
|
IN_LAMBDA
Within a lambda expression.
|
Modifier and Type | Method and Description |
---|---|
static PythonShallowParser.EPythonParserStates |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PythonShallowParser.EPythonParserStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonShallowParser.EPythonParserStates ANY
public static final PythonShallowParser.EPythonParserStates IN_CLASS
public static final PythonShallowParser.EPythonParserStates IN_LAMBDA
public static PythonShallowParser.EPythonParserStates[] values()
for (PythonShallowParser.EPythonParserStates c : PythonShallowParser.EPythonParserStates.values()) System.out.println(c);
public static PythonShallowParser.EPythonParserStates 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