public enum MenuEntryTagType extends Enum<MenuEntryTagType>
Java class for MenuEntryTagType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MenuEntryTagType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Selectable"/>
<enumeration value="NonSelectable"/>
<enumeration value="SubMenu"/>
<enumeration value="NonSelectableSubMenu"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NON_SELECTABLE
The Cashier cannot select this entryof the menu
|
NON_SELECTABLE_SUB_MENU
The menu entry is a submenu, but cannot be selected.
|
SELECTABLE
The Cashier may select this entryof the menu
|
SUB_MENU
The selection of this entry produces the display of a sub-menu (by the sending of another Input Request messageType containing the entries of this sub-menu).
|
| Modifier and Type | Method and Description |
|---|---|
static MenuEntryTagType |
fromValue(String v)
From value menu entry tag type.
|
String |
value()
Value string.
|
static MenuEntryTagType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuEntryTagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuEntryTagType SELECTABLE
public static final MenuEntryTagType NON_SELECTABLE
public static final MenuEntryTagType SUB_MENU
public static final MenuEntryTagType NON_SELECTABLE_SUB_MENU
public static MenuEntryTagType[] values()
for (MenuEntryTagType c : MenuEntryTagType.values()) System.out.println(c);
public static MenuEntryTagType 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 MenuEntryTagType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.