public enum PaymentStatus extends java.lang.Enum<PaymentStatus>
| Enum Constant and Description |
|---|
CANCELED
CANCELED payment status.
|
EXPIRED
EXPIRED payment status.
|
NotSpecified
Not specified.
|
VALIDATED
VALIDATED payment status.
|
WAITING
WAITING payment status.
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentStatus NotSpecified
public static final PaymentStatus WAITING
public static final PaymentStatus CANCELED
public static final PaymentStatus EXPIRED
public static final PaymentStatus VALIDATED
public static PaymentStatus[] values()
for (PaymentStatus c : PaymentStatus.values()) System.out.println(c);
public static PaymentStatus 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