@Generated public enum ConditionTaskOp extends Enum<ConditionTaskOp>
The boolean comparison to task values can be implemented with operators `EQUAL_TO`, `NOT_EQUAL`. If a task value was set to a boolean value, it will be serialized to `“true”` or `“false”` for the comparison.
| Enum Constant and Description |
|---|
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static ConditionTaskOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionTaskOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionTaskOp EQUAL_TO
public static final ConditionTaskOp GREATER_THAN
public static final ConditionTaskOp GREATER_THAN_OR_EQUAL
public static final ConditionTaskOp LESS_THAN
public static final ConditionTaskOp LESS_THAN_OR_EQUAL
public static final ConditionTaskOp NOT_EQUAL
public static ConditionTaskOp[] values()
for (ConditionTaskOp c : ConditionTaskOp.values()) System.out.println(c);
public static ConditionTaskOp 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 © 2024. All rights reserved.