public enum TransactionAuthorizationStatus extends java.lang.Enum<TransactionAuthorizationStatus>
| Enum Constant and Description |
|---|
AUTHORIZATION_CANCELED
The transaction performer has canceled this payment before it's been completely processed
|
AUTHORIZATION_DENIED
The authorizer has denied the transaction
|
AUTHORIZED
The transaction has been authorized
|
PENDING_AUTHORIZATION
The transaction is subject to authorization
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionAuthorizationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionAuthorizationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionAuthorizationStatus PENDING_AUTHORIZATION
public static final TransactionAuthorizationStatus AUTHORIZATION_CANCELED
public static final TransactionAuthorizationStatus AUTHORIZATION_DENIED
public static final TransactionAuthorizationStatus AUTHORIZED
public static TransactionAuthorizationStatus[] values()
for (TransactionAuthorizationStatus c : TransactionAuthorizationStatus.values()) System.out.println(c);
public static TransactionAuthorizationStatus 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