public enum BranchingCondition extends Enum<BranchingCondition>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NOT_EQUAL |
NOT_NULL |
NULL |
| Modifier and Type | Method and Description |
|---|---|
static BranchingCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BranchingCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BranchingCondition EQUAL
public static final BranchingCondition NOT_EQUAL
public static final BranchingCondition LESS
public static final BranchingCondition LESS_OR_EQUAL
public static final BranchingCondition GREATER
public static final BranchingCondition GREATER_OR_EQUAL
public static final BranchingCondition NULL
public static final BranchingCondition NOT_NULL
public static BranchingCondition[] values()
for (BranchingCondition c : BranchingCondition.values()) System.out.println(c);
public static BranchingCondition 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.