public enum BinaryBranchingCondition extends Enum<BinaryBranchingCondition>
| Enum Constant and Description |
|---|
EQUAL |
NOT_EQUAL |
REFERENCE_EQUAL |
REFERENCE_NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static BinaryBranchingCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryBranchingCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryBranchingCondition EQUAL
public static final BinaryBranchingCondition NOT_EQUAL
public static final BinaryBranchingCondition REFERENCE_EQUAL
public static final BinaryBranchingCondition REFERENCE_NOT_EQUAL
public static BinaryBranchingCondition[] values()
for (BinaryBranchingCondition c : BinaryBranchingCondition.values()) System.out.println(c);
public static BinaryBranchingCondition 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 nullCopyright © 2015. All rights reserved.