@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum JobComparator extends Enum<JobComparator>
The operator to use in a condition. Depending on the type of condition, possible values are:
Enum Constant and Description |
---|
CONTAINS |
EQ |
GT |
GTE |
LT |
LTE |
NE |
STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
static JobComparator |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static JobComparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobComparator EQ
public static final JobComparator GT
public static final JobComparator GTE
public static final JobComparator LT
public static final JobComparator LTE
public static final JobComparator NE
public static final JobComparator CONTAINS
public static final JobComparator STARTS_WITH
public static JobComparator[] values()
for (JobComparator c : JobComparator.values()) System.out.println(c);
public static JobComparator 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 String toString()
toString
in class Enum<JobComparator>
public static JobComparator fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.