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