@Generated(value="software.amazon.awssdk:codegen") 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 |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static JobComparator |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<JobComparator> |
knownValues()
|
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 final JobComparator UNKNOWN_TO_SDK_VERSION
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 valuepublic static Set<JobComparator> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known JobComparatorsCopyright © 2022. All rights reserved.