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