@Generated public enum RunConditionTaskOp extends Enum<RunConditionTaskOp>
| 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 RunConditionTaskOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunConditionTaskOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunConditionTaskOp EQUAL_TO
public static final RunConditionTaskOp GREATER_THAN
public static final RunConditionTaskOp GREATER_THAN_OR_EQUAL
public static final RunConditionTaskOp LESS_THAN
public static final RunConditionTaskOp LESS_THAN_OR_EQUAL
public static final RunConditionTaskOp NOT_EQUAL
public static RunConditionTaskOp[] values()
for (RunConditionTaskOp c : RunConditionTaskOp.values()) System.out.println(c);
public static RunConditionTaskOp 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.