public static enum Branch.BinaryBranch.CompareOp extends Enum<Branch.BinaryBranch.CompareOp>
Modifier and Type | Method and Description |
---|---|
static Branch.BinaryBranch.CompareOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Branch.BinaryBranch.CompareOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Branch.BinaryBranch.CompareOp EQ
public static final Branch.BinaryBranch.CompareOp NE
public static final Branch.BinaryBranch.CompareOp LT
public static final Branch.BinaryBranch.CompareOp LE
public static final Branch.BinaryBranch.CompareOp GT
public static final Branch.BinaryBranch.CompareOp GE
public static Branch.BinaryBranch.CompareOp[] values()
for (Branch.BinaryBranch.CompareOp c : Branch.BinaryBranch.CompareOp.values()) System.out.println(c);
public static Branch.BinaryBranch.CompareOp 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 null