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