public enum DeviceEnumeration extends Enum<DeviceEnumeration>
Java class for DeviceEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DeviceEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CashierDisplay"/>
<enumeration value="CustomerDisplay"/>
<enumeration value="CashierInput"/>
<enumeration value="CustomerInput"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CASHIER_DISPLAY
Used by the POI System (or the Sale System when the device is managed by the POI Terminal), to display some information to the Cashier.
|
CASHIER_INPUT
Any kind of keyboard allowing all or part of the commands of the Input message request from the Sale System to the POI System (InputCommand data element).
|
CUSTOMER_DISPLAY
Used by the Sale System (or the POI System when the device is managed by the Sale Terminal), to display some information to the Customer.
|
CUSTOMER_INPUT
Any kind of keyboard allowing all or part of the commands of the Input message request from the POI System to the Sale System (InputCommand data element).
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceEnumeration |
fromValue(String v) |
String |
value() |
static DeviceEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceEnumeration CASHIER_DISPLAY
public static final DeviceEnumeration CUSTOMER_DISPLAY
public static final DeviceEnumeration CASHIER_INPUT
public static final DeviceEnumeration CUSTOMER_INPUT
public static DeviceEnumeration[] values()
for (DeviceEnumeration c : DeviceEnumeration.values()) System.out.println(c);
public static DeviceEnumeration 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 value()
public static DeviceEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.