@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum OperatorType extends Enum<OperatorType>
Modifier and Type | Method and Description |
---|---|
static OperatorType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static OperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorType Eq
public static final OperatorType Lt
public static final OperatorType Gt
public static final OperatorType Le
public static final OperatorType Ge
public static final OperatorType In
public static final OperatorType Between
public static OperatorType[] values()
for (OperatorType c : OperatorType.values()) System.out.println(c);
public static OperatorType 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<OperatorType>
public static OperatorType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.