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