@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum Operators extends Enum<Operators>
Enum Constant and Description |
---|
ADDITION |
BETWEEN |
CONTAINS |
DIVISION |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
MASK_ALL |
MASK_FIRST_N |
MASK_LAST_N |
MULTIPLICATION |
NO_OP |
NOT_EQUAL_TO |
PROJECTION |
SUBTRACTION |
VALIDATE_NON_NEGATIVE |
VALIDATE_NON_NULL |
VALIDATE_NON_ZERO |
VALIDATE_NUMERIC |
Modifier and Type | Method and Description |
---|---|
static Operators |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static Operators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operators PROJECTION
public static final Operators LESS_THAN
public static final Operators GREATER_THAN
public static final Operators CONTAINS
public static final Operators BETWEEN
public static final Operators LESS_THAN_OR_EQUAL_TO
public static final Operators GREATER_THAN_OR_EQUAL_TO
public static final Operators EQUAL_TO
public static final Operators NOT_EQUAL_TO
public static final Operators ADDITION
public static final Operators MULTIPLICATION
public static final Operators DIVISION
public static final Operators SUBTRACTION
public static final Operators MASK_ALL
public static final Operators MASK_FIRST_N
public static final Operators MASK_LAST_N
public static final Operators VALIDATE_NON_NULL
public static final Operators VALIDATE_NON_ZERO
public static final Operators VALIDATE_NON_NEGATIVE
public static final Operators VALIDATE_NUMERIC
public static final Operators NO_OP
public static Operators[] values()
for (Operators c : Operators.values()) System.out.println(c);
public static Operators 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 static Operators fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.