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