Modifier and Type | Field and Description |
---|---|
private Precedence |
precedence |
private java.lang.String |
showAs |
Modifier and Type | Method and Description |
---|---|
CompOp |
getInverted() |
static CompOp |
getOpFor(JVMInstr instr) |
Precedence |
getPrecedence() |
java.lang.String |
getShowAs() |
static CompOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompOp LT
public static final CompOp GT
public static final CompOp LTE
public static final CompOp GTE
public static final CompOp EQ
public static final CompOp NE
private final java.lang.String showAs
private final Precedence precedence
public static CompOp[] values()
for (CompOp c : CompOp.values()) System.out.println(c);
public static CompOp 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 nullpublic java.lang.String getShowAs()
public Precedence getPrecedence()
public CompOp getInverted()