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