public static enum VarDefn.Kind extends Enum<VarDefn.Kind>
| Enum Constant and Description |
|---|
IJ_PARAM |
LOCAL_VAR |
PARAM |
UNDECLARED |
| Modifier and Type | Method and Description |
|---|---|
static VarDefn.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VarDefn.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VarDefn.Kind PARAM
public static final VarDefn.Kind IJ_PARAM
public static final VarDefn.Kind LOCAL_VAR
public static final VarDefn.Kind UNDECLARED
public static VarDefn.Kind[] values()
for (VarDefn.Kind c : VarDefn.Kind.values()) System.out.println(c);
public static VarDefn.Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null