public static enum CefMenuModel.MenuItemType extends java.lang.Enum<CefMenuModel.MenuItemType>
| Enum Constant and Description |
|---|
MENUITEMTYPE_CHECK |
MENUITEMTYPE_COMMAND |
MENUITEMTYPE_NONE |
MENUITEMTYPE_RADIO |
MENUITEMTYPE_SEPARATOR |
MENUITEMTYPE_SUBMENU |
| Modifier and Type | Method and Description |
|---|---|
static CefMenuModel.MenuItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefMenuModel.MenuItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefMenuModel.MenuItemType MENUITEMTYPE_CHECK
public static final CefMenuModel.MenuItemType MENUITEMTYPE_COMMAND
public static final CefMenuModel.MenuItemType MENUITEMTYPE_NONE
public static final CefMenuModel.MenuItemType MENUITEMTYPE_RADIO
public static final CefMenuModel.MenuItemType MENUITEMTYPE_SEPARATOR
public static final CefMenuModel.MenuItemType MENUITEMTYPE_SUBMENU
public static CefMenuModel.MenuItemType 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 nullpublic static CefMenuModel.MenuItemType[] values()
for (CefMenuModel.MenuItemType c : CefMenuModel.MenuItemType.values()) System.out.println(c);