public static enum PaymentDevice.MerchantDecision extends Enum<PaymentDevice.MerchantDecision>
| Enum Constant and Description |
|---|
FORCE_DECLINE |
FORCE_ONLINE
This merchant decision insists the transaction to be online with the usage of PIN.
|
REQUEST_TC |
| Modifier and Type | Method and Description |
|---|---|
static PaymentDevice.MerchantDecision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentDevice.MerchantDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentDevice.MerchantDecision REQUEST_TC
public static final PaymentDevice.MerchantDecision FORCE_ONLINE
public static final PaymentDevice.MerchantDecision FORCE_DECLINE
public static PaymentDevice.MerchantDecision[] values()
for (PaymentDevice.MerchantDecision c : PaymentDevice.MerchantDecision.values()) System.out.println(c);
public static PaymentDevice.MerchantDecision 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