Package com.onslip360
Enum API.ButtonMap.Type
- java.lang.Object
-
- java.lang.Enum<API.ButtonMap.Type>
-
- com.onslip360.API.ButtonMap.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<API.ButtonMap.Type>
- Enclosing class:
- API.ButtonMap
public static enum API.ButtonMap.Type extends Enum<API.ButtonMap.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
MENU
MENU_SECTION
PHONE_BUTTONS
TABLET_BUTTONS
TABLET_GROUPS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.ButtonMap.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.ButtonMap.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TABLET_GROUPS
public static final API.ButtonMap.Type TABLET_GROUPS
-
TABLET_BUTTONS
public static final API.ButtonMap.Type TABLET_BUTTONS
-
PHONE_BUTTONS
public static final API.ButtonMap.Type PHONE_BUTTONS
-
MENU
public static final API.ButtonMap.Type MENU
-
MENU_SECTION
public static final API.ButtonMap.Type MENU_SECTION
-
__
public static final API.ButtonMap.Type __
-
-
Method Detail
-
values
public static API.ButtonMap.Type[] 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.ButtonMap.Type c : API.ButtonMap.Type.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.ButtonMap.Type 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
-
-