|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<JXSearchField.SearchMode>
org.jdesktop.swingx.JXSearchField.SearchMode
public static enum JXSearchField.SearchMode
Defines when action events are posted.
Enum Constant Summary | |
---|---|
INSTANT
In INSTANT search mode, an action event is fired, when the user presses enter or changes the search text. |
|
REGULAR
In REGULAR search mode, an action event is fired, when the user presses enter or clicks the find button. |
Method Summary | |
---|---|
static JXSearchField.SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static JXSearchField.SearchMode[] |
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 JXSearchField.SearchMode REGULAR
In REGULAR search mode, an action event is fired, when the user presses enter or clicks the find button.
However, if a find popup menu is set and layout style is
JXSearchField.LayoutStyle.MAC
, no action will be fired, when the find
button is clicked, because instead the popup menu is shown. A search
can therefore only be triggered, by pressing the enter key.
The find button can have a rollover and a pressed icon, defined by the "SearchField.rolloverIcon" and "SearchField.pressedIcon" UI properties. When a find popup menu is set, "SearchField.popupRolloverIcon" and "SearchField.popupPressedIcon" are used.
public static final JXSearchField.SearchMode INSTANT
JXSearchField.getInstantSearchDelay()
.
No rollover and pressed icon is used for the find button.
Method Detail |
---|
public static JXSearchField.SearchMode[] values()
for (JXSearchField.SearchMode c : JXSearchField.SearchMode.values()) System.out.println(c);
public static JXSearchField.SearchMode 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 |