public static enum Execode.EXXXInstruction extends java.lang.Enum<Execode.EXXXInstruction>
| Enum Constant and Description |
|---|
nop |
| Modifier and Type | Field and Description |
|---|---|
(package private) boolean |
bSet |
(package private) int |
ix |
(package private) Execode.EOperand |
XXXoperand |
(package private) Execode.EInstruction |
XXXoperator |
| Modifier and Type | Method and Description |
|---|---|
static Execode.EXXXInstruction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Execode.EXXXInstruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Execode.EXXXInstruction nop
int ix
boolean bSet
Execode.EOperand XXXoperand
Execode.EInstruction XXXoperator
public static Execode.EXXXInstruction[] values()
for (Execode.EXXXInstruction c : Execode.EXXXInstruction.values()) System.out.println(c);
public static Execode.EXXXInstruction 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