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