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