public static enum Primitive.Modifier extends java.lang.Enum<Primitive.Modifier>
Enum Constant and Description |
---|
INTERNAL
Special-purpose internal operations (used only by the tool, not available to users)
|
NORMAL
Primitives that constitute instructions (default modifier)
|
PSEUDO
Operations describing pseudo instructions (are not used for decoding)
|
Modifier and Type | Method and Description |
---|---|
static Primitive.Modifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Primitive.Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Primitive.Modifier NORMAL
public static final Primitive.Modifier PSEUDO
public static final Primitive.Modifier INTERNAL
public static Primitive.Modifier[] values()
for (Primitive.Modifier c : Primitive.Modifier.values()) System.out.println(c);
public static Primitive.Modifier 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