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