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