public static enum Execode.EInstruction extends java.lang.Enum<Execode.EInstruction>
Enum Constant and Description |
---|
add |
and |
bitneg |
div |
equ |
ge |
gt |
le |
lt |
mod |
mult |
neg |
nequ |
or |
pow |
set |
shl |
shr |
sub |
ushr |
xor |
Modifier and Type | Field and Description |
---|---|
int |
ix
The meaning of ix is yet not clarified.
|
int |
usedStack
<0: push >0 pop
|
Modifier and Type | Method and Description |
---|---|
static Execode.EInstruction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Execode.EInstruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Execode.EInstruction set
public static final Execode.EInstruction add
public static final Execode.EInstruction sub
public static final Execode.EInstruction mult
public static final Execode.EInstruction div
public static final Execode.EInstruction pow
public static final Execode.EInstruction mod
public static final Execode.EInstruction neg
public static final Execode.EInstruction bitneg
public static final Execode.EInstruction shl
public static final Execode.EInstruction shr
public static final Execode.EInstruction ushr
public static final Execode.EInstruction and
public static final Execode.EInstruction or
public static final Execode.EInstruction xor
public static final Execode.EInstruction equ
public static final Execode.EInstruction nequ
public static final Execode.EInstruction lt
public static final Execode.EInstruction le
public static final Execode.EInstruction gt
public static final Execode.EInstruction ge
public int ix
public final int usedStack
public static Execode.EInstruction[] values()
for (Execode.EInstruction c : Execode.EInstruction.values()) System.out.println(c);
public static Execode.EInstruction 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