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