public enum ConditionOp extends java.lang.Enum<ConditionOp>
Enum Constant and Description |
---|
Equal |
GreaterOrEqual |
GreaterThan |
InSet |
LessOrEqual |
LessThan |
NotEqual |
NotInSet |
Modifier and Type | Method and Description |
---|---|
static ConditionOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConditionOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionOp LessThan
public static final ConditionOp LessOrEqual
public static final ConditionOp GreaterThan
public static final ConditionOp GreaterOrEqual
public static final ConditionOp Equal
public static final ConditionOp NotEqual
public static final ConditionOp InSet
public static final ConditionOp NotInSet
public static ConditionOp[] values()
for (ConditionOp c : ConditionOp.values()) System.out.println(c);
public static ConditionOp valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null