public enum expr_contextType extends java.lang.Enum<expr_contextType>
| Enum Constant and Description |
|---|
AugLoad |
AugStore |
Del |
Load |
Param |
Store |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static expr_contextType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static expr_contextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final expr_contextType UNDEFINED
public static final expr_contextType Load
public static final expr_contextType Store
public static final expr_contextType Del
public static final expr_contextType AugLoad
public static final expr_contextType AugStore
public static final expr_contextType Param
public static expr_contextType[] values()
for (expr_contextType c : expr_contextType.values()) System.out.println(c);
public static expr_contextType 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