public enum PopupMenuType extends java.lang.Enum<PopupMenuType>
| Enum Constant and Description |
|---|
comboBoxMenu
Popup menu displayed under a combobox.
|
customPopupMenu
Custom user popup menu that can be opened anywhere.
|
menuBarMenu
Popup menu displayed directly from the menubar.
|
menuBarSubMenu
Popup menu displayed as a sub menu from another menu in menubar.
|
| Modifier and Type | Method and Description |
|---|---|
static PopupMenuType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PopupMenuType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopupMenuType menuBarMenu
public static final PopupMenuType menuBarSubMenu
public static final PopupMenuType comboBoxMenu
public static final PopupMenuType customPopupMenu
public static PopupMenuType[] values()
for (PopupMenuType c : PopupMenuType.values()) System.out.println(c);
public static PopupMenuType 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