public static enum JBPopupFactory.ActionSelectionAid extends java.lang.Enum<JBPopupFactory.ActionSelectionAid>
| Enum Constant and Description |
|---|
ALPHA_NUMBERING
Same as numbering, but will allow A-Z 'numbers' when out of 0-9 range.
|
MNEMONICS
The actions in a popup can be selected by pressing the character from the action's text prefixed with
an & character.
|
NUMBERING
The actions in a popup are prefixed by numbers (indexes in the list).
|
SPEEDSEARCH
The actions in a popup can be selected by typing part of the action's text.
|
| Modifier and Type | Method and Description |
|---|---|
static JBPopupFactory.ActionSelectionAid |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JBPopupFactory.ActionSelectionAid[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JBPopupFactory.ActionSelectionAid NUMBERING
public static final JBPopupFactory.ActionSelectionAid ALPHA_NUMBERING
public static final JBPopupFactory.ActionSelectionAid SPEEDSEARCH
public static final JBPopupFactory.ActionSelectionAid MNEMONICS
public static JBPopupFactory.ActionSelectionAid[] values()
for (JBPopupFactory.ActionSelectionAid c : JBPopupFactory.ActionSelectionAid.values()) System.out.println(c);
public static JBPopupFactory.ActionSelectionAid 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