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