public static enum Search.SearchState extends Enum<Search.SearchState>
Enum Constant and Description |
---|
AtCardinal |
AtDropZone |
Default |
Idle |
Inspecting |
Modifier and Type | Method and Description |
---|---|
static Search.SearchState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Search.SearchState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Search.SearchState Default
public static final Search.SearchState AtCardinal
public static final Search.SearchState AtDropZone
public static final Search.SearchState Inspecting
public static final Search.SearchState Idle
public static Search.SearchState[] values()
for (Search.SearchState c : Search.SearchState.values()) System.out.println(c);
public static Search.SearchState 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 null