public enum DeviceType extends java.lang.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 |
|---|---|
java.lang.String |
getValue()
Return the DeviceType value.
|
static DeviceType |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
Copyright © 2018. All Rights Reserved.