public enum ConditionOperator extends Enum<ConditionOperator>
| Enum Constant and Description |
|---|
GREATER_THAN
Enum value GreaterThan.
|
GREATER_THAN_OR_EQUAL
Enum value GreaterThanOrEqual.
|
LESS_THAN
Enum value LessThan.
|
LESS_THAN_OR_EQUAL
Enum value LessThanOrEqual.
|
| Modifier and Type | Method and Description |
|---|---|
static ConditionOperator |
fromString(String value)
Parses a serialized value to a ConditionOperator instance.
|
String |
toString() |
static ConditionOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionOperator GREATER_THAN
public static final ConditionOperator GREATER_THAN_OR_EQUAL
public static final ConditionOperator LESS_THAN
public static final ConditionOperator LESS_THAN_OR_EQUAL
public static ConditionOperator[] values()
for (ConditionOperator c : ConditionOperator.values()) System.out.println(c);
public static ConditionOperator 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 static ConditionOperator fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ConditionOperator>Copyright © 2019. All rights reserved.