Package com.onslip360
Enum API.ButtonMapItem.Action
- java.lang.Object
-
- java.lang.Enum<API.ButtonMapItem.Action>
-
- com.onslip360.API.ButtonMapItem.Action
-
- All Implemented Interfaces:
Serializable
,Comparable<API.ButtonMapItem.Action>
- Enclosing class:
- API.ButtonMapItem
public static enum API.ButtonMapItem.Action extends Enum<API.ButtonMapItem.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
ADD_PRODUCT_ITEM
ADD_TAB_DISCOUNT
DISPLAY_BUTTON_MAP
DISPLAY_NEXT_PAGE
DISPLAY_PARENT_BUTTON_MAP
DISPLAY_PREVIOUS_PAGE
OPEN_URI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.ButtonMapItem.Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.ButtonMapItem.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_PRODUCT_ITEM
public static final API.ButtonMapItem.Action ADD_PRODUCT_ITEM
-
DISPLAY_BUTTON_MAP
public static final API.ButtonMapItem.Action DISPLAY_BUTTON_MAP
-
DISPLAY_PARENT_BUTTON_MAP
public static final API.ButtonMapItem.Action DISPLAY_PARENT_BUTTON_MAP
-
DISPLAY_PREVIOUS_PAGE
public static final API.ButtonMapItem.Action DISPLAY_PREVIOUS_PAGE
-
DISPLAY_NEXT_PAGE
public static final API.ButtonMapItem.Action DISPLAY_NEXT_PAGE
-
ADD_TAB_DISCOUNT
public static final API.ButtonMapItem.Action ADD_TAB_DISCOUNT
-
OPEN_URI
public static final API.ButtonMapItem.Action OPEN_URI
-
__
public static final API.ButtonMapItem.Action __
-
-
Method Detail
-
values
public static API.ButtonMapItem.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (API.ButtonMapItem.Action c : API.ButtonMapItem.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.ButtonMapItem.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-