public static enum SearchResult.Status extends Enum<SearchResult.Status>
| Enum Constant and Description |
|---|
COMPLETE |
EMPTY |
NO_UNIQUE_RESULT |
SEARCH_LIMIT_REACHED |
| Modifier and Type | Method and Description |
|---|---|
static SearchResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchResult.Status COMPLETE
public static final SearchResult.Status EMPTY
public static final SearchResult.Status SEARCH_LIMIT_REACHED
public static final SearchResult.Status NO_UNIQUE_RESULT
public static SearchResult.Status[] values()
for (SearchResult.Status c : SearchResult.Status.values()) System.out.println(c);
public static SearchResult.Status 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 © 2017. All rights reserved.