public enum MenuFieldID extends java.lang.Enum<MenuFieldID> implements ValueEnum
| Enum Constant and Description | 
|---|
| ICONDisplays the icon field for the menu. | 
| KEYDisplays the key field for the menu. | 
| SUBMENUField to display the submenu image for items that have a submenu. | 
| TITLEDisplays the item's title | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static MenuFieldID | valueOf(java.lang.String name)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. | 
public static final MenuFieldID ICON
public static final MenuFieldID TITLE
public static final MenuFieldID KEY
public static final MenuFieldID SUBMENU
public static MenuFieldID[] values()
for (MenuFieldID c : MenuFieldID.values()) System.out.println(c);
public static MenuFieldID valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null