com.smartgwt.client.types
Enum MenuFieldID

java.lang.Object
  extended by java.lang.Enum<MenuFieldID>
      extended by com.smartgwt.client.types.MenuFieldID
All Implemented Interfaces:
ValueEnum, java.io.Serializable, java.lang.Comparable<MenuFieldID>

public enum MenuFieldID
extends java.lang.Enum<MenuFieldID>
implements ValueEnum

Simple string identifiers for standard menu fields.


Enum Constant Summary
ICON
          Displays the icon field for the menu.
KEY
          Displays the key field for the menu.
SUBMENU
          Field to display the submenu image for items that have a submenu.
TITLE
          Displays the item's title
 
Method Summary
 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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ICON

public static final MenuFieldID 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

public static final MenuFieldID TITLE
Displays the item's title


KEY

public static final MenuFieldID KEY
Displays the key field for the menu. This field contains the name or title of any shortcut keys for this menu item.


SUBMENU

public static final MenuFieldID SUBMENU
Field to display the submenu image for items that have a submenu.

Method Detail

values

public static final MenuFieldID[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(MenuFieldID c : MenuFieldID.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static MenuFieldID valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getValue

public java.lang.String getValue()
Specified by:
getValue in interface ValueEnum