public enum MenuEntryTagEnumeration extends Enum<MenuEntryTagEnumeration>
Java class for MenuEntryTagEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MenuEntryTagEnumeration">
<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 message containing the entries of this sub-menu).
|
| Modifier and Type | Method and Description |
|---|---|
static MenuEntryTagEnumeration |
fromValue(String v) |
String |
value() |
static MenuEntryTagEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuEntryTagEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuEntryTagEnumeration SELECTABLE
public static final MenuEntryTagEnumeration NON_SELECTABLE
public static final MenuEntryTagEnumeration SUB_MENU
public static final MenuEntryTagEnumeration NON_SELECTABLE_SUB_MENU
public static MenuEntryTagEnumeration[] values()
for (MenuEntryTagEnumeration c : MenuEntryTagEnumeration.values()) System.out.println(c);
public static MenuEntryTagEnumeration 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 MenuEntryTagEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.