public enum HostedPaymentStatus extends java.lang.Enum<HostedPaymentStatus>
| Enum Constant and Description |
|---|
EXPIRED |
PAYMENT_PENDING |
PAYMENT_RECEIVED |
| Modifier and Type | Method and Description |
|---|---|
static HostedPaymentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HostedPaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Payment Pending") public static final HostedPaymentStatus PAYMENT_PENDING
@SerializedName(value="Payment Received") public static final HostedPaymentStatus PAYMENT_RECEIVED
@SerializedName(value="Expired") public static final HostedPaymentStatus EXPIRED
public static HostedPaymentStatus[] values()
for (HostedPaymentStatus c : HostedPaymentStatus.values()) System.out.println(c);
public static HostedPaymentStatus 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