public enum DeviceType extends Enum<DeviceType>
| Enum Constant and Description |
|---|
AIRPAY |
DIAL_TERMINAL |
ELECTRONIC_CASH_REGISTER |
PERSONAL_COMPUTER_BASED_TERMINAL |
SELF_SERVICE_TERMINAL |
UNATTENDED |
UNKNOWN |
VIRTUAL_TERMINAL |
WEBSITE |
WIRELESS_POS |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Return the DeviceType value.
|
static DeviceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceType UNKNOWN
public static final DeviceType UNATTENDED
public static final DeviceType SELF_SERVICE_TERMINAL
public static final DeviceType ELECTRONIC_CASH_REGISTER
public static final DeviceType PERSONAL_COMPUTER_BASED_TERMINAL
public static final DeviceType AIRPAY
public static final DeviceType WIRELESS_POS
public static final DeviceType WEBSITE
public static final DeviceType DIAL_TERMINAL
public static final DeviceType VIRTUAL_TERMINAL
public static DeviceType[] values()
for (DeviceType c : DeviceType.values()) System.out.println(c);
public static DeviceType 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 nullpublic String getValue()
Copyright © 2016. All Rights Reserved.