Package com.smartgwt.client.types
Enum MenuFieldID
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<MenuFieldID>
,Constable
Simple string identifiers for standard menu fields.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static MenuFieldID
Returns the enum constant of this type with the specified name.static MenuFieldID[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ICON
Displays the icon field for the menu. This field contains the items specified icon (if there is one), or if the item is checked, the 
 checkmark icon for the item. -
TITLE
Displays the item's title -
KEY
Displays the key field for the menu. This field contains the name or title of any shortcut keys for this menu item. -
SUBMENU
Field to display the submenu image for items that have a submenu.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-