public enum ConditionType extends Enum<ConditionType>
| Enum Constant and Description |
|---|
AND |
CUSTOM |
EQUALS |
GREATER_OR_EQUALS |
GREATER_THAN |
LESS_OR_EQUALS |
LESS_THAN |
NOT_EQUALS |
OR |
| Modifier and Type | Method and Description |
|---|---|
static ConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionType EQUALS
public static final ConditionType NOT_EQUALS
public static final ConditionType LESS_THAN
public static final ConditionType GREATER_THAN
public static final ConditionType LESS_OR_EQUALS
public static final ConditionType GREATER_OR_EQUALS
public static final ConditionType OR
public static final ConditionType AND
public static final ConditionType CUSTOM
public static ConditionType[] values()
for (ConditionType c : ConditionType.values()) System.out.println(c);
public static ConditionType 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 nullApache CXF