public enum SearchResultType extends java.lang.Enum<SearchResultType>
Modifier and Type | Method and Description |
---|---|
static SearchResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchResultType EVENT
public static final SearchResultType LOCATION
public static final SearchResultType CATEGORY
public static SearchResultType[] values()
for (SearchResultType c : SearchResultType.values()) System.out.println(c);
public static SearchResultType 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