public static enum SearchBar.SearchDir extends Enum<SearchBar.SearchDir>
Enum Constant and Description |
---|
BACKWARD
Previous hit.
|
CURRENT
Current hit.
|
FORWARD
Next hit.
|
Modifier and Type | Method and Description |
---|---|
static SearchBar.SearchDir |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchBar.SearchDir[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchBar.SearchDir CURRENT
public static final SearchBar.SearchDir FORWARD
public static final SearchBar.SearchDir BACKWARD
public static SearchBar.SearchDir[] values()
for (SearchBar.SearchDir c : SearchBar.SearchDir.values()) System.out.println(c);
public static SearchBar.SearchDir valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2015 BaseX Team. All rights reserved.