public enum ExternalPaymentStatus extends java.lang.Enum<ExternalPaymentStatus>
| Enum Constant and Description |
|---|
CANCELED
The external payment has been canceled
|
EXPIRED
The external payment has expired.
|
FAILED
The external payment processing has failed
|
PENDING
The external payment is pending to be processed.
|
PROCESSED
The external payment has been processed
|
| Modifier and Type | Method and Description |
|---|---|
static ExternalPaymentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalPaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalPaymentStatus PENDING
public static final ExternalPaymentStatus EXPIRED
public static final ExternalPaymentStatus PROCESSED
public static final ExternalPaymentStatus FAILED
public static final ExternalPaymentStatus CANCELED
public static ExternalPaymentStatus[] values()
for (ExternalPaymentStatus c : ExternalPaymentStatus.values()) System.out.println(c);
public static ExternalPaymentStatus 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