public static enum SearchEvent.Type extends java.lang.Enum<SearchEvent.Type>
| Enum Constant and Description |
|---|
FIND
The event fired when the user wants to find text in the editor.
|
MARK_ALL
The event fired when the text to "mark all" has changed.
|
REPLACE
The event fired when the user wants to replace text in the editor.
|
REPLACE_ALL
The event fired when the user wants to replace all instances of
specific text with new text in the editor.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchEvent.Type MARK_ALL
public static final SearchEvent.Type FIND
public static final SearchEvent.Type REPLACE
public static final SearchEvent.Type REPLACE_ALL
public static SearchEvent.Type[] values()
for (SearchEvent.Type c : SearchEvent.Type.values()) System.out.println(c);
public static SearchEvent.Type 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