public static enum SearchResult.Status extends java.lang.Enum<SearchResult.Status>
Modifier and Type | Method and Description |
---|---|
static SearchResult.Status |
valueOf(java.lang.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 UNKNOWN
public static final SearchResult.Status RED
public static final SearchResult.Status YELLOW
public static final SearchResult.Status GREEN
public static SearchResult.Status[] values()
for (SearchResult.Status c : SearchResult.Status.values()) System.out.println(c);
public static SearchResult.Status 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