public enum TerminalEnvironmentType extends Enum<TerminalEnvironmentType>
Java class for TerminalEnvironmentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TerminalEnvironmentType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Attended"/>
<enumeration value="SemiAttended"/>
<enumeration value="Unattended"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ATTENDED
The Sale Terminal is managed by a Cashier through the Sale System.
|
SEMI_ATTENDED
Without a Cashier Interface.
|
UNATTENDED
The Sale Terminal is managed as a logical terminal without any Cashier Interface (typically a background process).
|
| Modifier and Type | Method and Description |
|---|---|
static TerminalEnvironmentType |
fromValue(String v)
From value terminal environment type.
|
String |
value()
Value string.
|
static TerminalEnvironmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminalEnvironmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalEnvironmentType ATTENDED
public static final TerminalEnvironmentType SEMI_ATTENDED
public static final TerminalEnvironmentType UNATTENDED
public static TerminalEnvironmentType[] values()
for (TerminalEnvironmentType c : TerminalEnvironmentType.values()) System.out.println(c);
public static TerminalEnvironmentType 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 TerminalEnvironmentType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.