public enum ContextMenuItemType extends java.lang.Enum<ContextMenuItemType>
| Enum Constant and Description |
|---|
CHECKABLE_ITEM |
GROUP |
ITEM |
MENU |
SEPARATOR |
| Modifier and Type | Method and Description |
|---|---|
static ContextMenuItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
返回具有指定名称的此类型的枚举常量。 |
static ContextMenuItemType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
以声明顺序返回包含此枚举类型的常量的数组。 |
public static final ContextMenuItemType ITEM
public static final ContextMenuItemType CHECKABLE_ITEM
public static final ContextMenuItemType GROUP
public static final ContextMenuItemType SEPARATOR
public static final ContextMenuItemType MENU
public static ContextMenuItemType[] values()
for (ContextMenuItemType c : ContextMenuItemType.values()) System.out.println(c);
public static ContextMenuItemType 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 name
java.lang.NullPointerException - if the argument is null