public enum SearchResultType extends java.lang.Enum<SearchResultType>
| Enum Constant and Description |
|---|
PREVIEW_ONLY |
STATISTICS_ONLY |
| 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 STATISTICS_ONLY
public static final SearchResultType PREVIEW_ONLY
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