public enum ConditionOperator extends Enum<ConditionOperator>
| Enum Constant and Description |
|---|
CONTAINS |
ENDSWITH |
EQUALS |
GREATERTHAN |
LESSTHAN |
NOTEQUAL |
STARTSWITH |
STRINGEQUALS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ConditionOperator |
findByValue(int value) |
int |
getValue() |
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 EQUALS
public static final ConditionOperator GREATERTHAN
public static final ConditionOperator LESSTHAN
public static final ConditionOperator NOTEQUAL
public static final ConditionOperator STRINGEQUALS
public static final ConditionOperator CONTAINS
public static final ConditionOperator STARTSWITH
public static final ConditionOperator ENDSWITH
public static final ConditionOperator UNKNOWN
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 findByValue(int value)
public int getValue()
Copyright © 2017. All rights reserved.