public static enum VariableT.Kind extends java.lang.Enum<VariableT.Kind>
| Enum Constant and Description |
|---|
BITFIELD
A bit-field.
|
FIELD
A field.
|
GLOBAL
A global variable.
|
LOCAL
A local variable.
|
PARAMETER
A parameter.
|
| Modifier and Type | Method and Description |
|---|---|
static VariableT.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VariableT.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableT.Kind GLOBAL
public static final VariableT.Kind LOCAL
public static final VariableT.Kind PARAMETER
public static final VariableT.Kind FIELD
public static final VariableT.Kind BITFIELD
public static VariableT.Kind[] values()
for (VariableT.Kind c : VariableT.Kind.values()) System.out.println(c);
public static VariableT.Kind 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 nullCopyright © 2014. All Rights Reserved.