public static enum PaymentDevice.HostDecision extends Enum<PaymentDevice.HostDecision>
| Enum Constant and Description |
|---|
CONNECT_FAILED |
HOST_AUTHORIZED |
HOST_DECLINE |
| Modifier and Type | Method and Description |
|---|---|
static PaymentDevice.HostDecision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentDevice.HostDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentDevice.HostDecision HOST_AUTHORIZED
public static final PaymentDevice.HostDecision HOST_DECLINE
public static final PaymentDevice.HostDecision CONNECT_FAILED
public static PaymentDevice.HostDecision[] values()
for (PaymentDevice.HostDecision c : PaymentDevice.HostDecision.values()) System.out.println(c);
public static PaymentDevice.HostDecision 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