public enum CompOp extends Enum<CompOp>
Modifier and Type | Method and Description |
---|---|
CompOp |
getInverted() |
static CompOp |
getOpFor(JVMInstr instr) |
Precedence |
getPrecedence() |
String |
getShowAs() |
static CompOp |
valueOf(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
public static CompOp[] values()
for (CompOp c : CompOp.values()) System.out.println(c);
public static CompOp valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getShowAs()
public Precedence getPrecedence()
public CompOp getInverted()
Copyright © 2011-2021. All Rights Reserved.