public enum ConditionOp extends Enum<ConditionOp>
Enum Constant and Description |
---|
Equal |
GreaterOrEqual |
GreaterThan |
InSet |
LessOrEqual |
LessThan |
NotEqual |
NotInSet |
Modifier and Type | Method and Description |
---|---|
boolean |
apply(double x,
double value,
Set<Double> set) |
boolean |
apply(float x,
float value,
Set<Float> set) |
boolean |
apply(int x,
int value,
Set<Integer> set) |
boolean |
apply(long x,
long value,
Set<Long> set) |
boolean |
apply(String x,
String value,
Set<String> set) |
static ConditionOp |
valueOf(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(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 © 2022. All rights reserved.