public enum PaymentContextDetailsStatusType extends java.lang.Enum<PaymentContextDetailsStatusType>
| Modifier and Type | Method and Description |
|---|---|
static PaymentContextDetailsStatusType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentContextDetailsStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Created") public static final PaymentContextDetailsStatusType CREATED
@SerializedName(value="Approved") public static final PaymentContextDetailsStatusType APPROVED
public static PaymentContextDetailsStatusType[] values()
for (PaymentContextDetailsStatusType c : PaymentContextDetailsStatusType.values()) System.out.println(c);
public static PaymentContextDetailsStatusType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null