|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PopupMenuType> com.alee.laf.menu.PopupMenuType
public enum PopupMenuType
This enumeration represents various popup menu types.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PopupMenuType menuBarMenu
public static final PopupMenuType menuBarSubMenu
public static final PopupMenuType comboBoxMenu
public static final PopupMenuType customPopupMenu
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |