public static enum TransactionResponse.Action extends Enum<TransactionResponse.Action>
Enum Constant and Description |
---|
CARDHOLDER_SIGNATURE
Cardholder signature action.
|
MERCHANT_SIGNATURE
Merchant signature action.
|
NONE
No action.
|
Modifier and Type | Method and Description |
---|---|
static TransactionResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionResponse.Action NONE
public static final TransactionResponse.Action CARDHOLDER_SIGNATURE
public static final TransactionResponse.Action MERCHANT_SIGNATURE
public static TransactionResponse.Action[] values()
for (TransactionResponse.Action c : TransactionResponse.Action.values()) System.out.println(c);
public static TransactionResponse.Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null