public enum QueryType extends Enum<QueryType>
| Enum Constant and Description |
|---|
ADVANCED_SEARCH
Query submitted with an advanced search.
|
BROWSE
Query submitted with a browse search.
|
GENERIC_SEARCH
Query submitted with a generic search.
|
GEO_SEARCH
Query submitted with a geo search.
|
GOOGLE_SEARCH
Query submitted with a google search.
|
QUICK_SEARCH
Query submitted with a quick search.
|
SIMPLE_SEARCH
Query submitted with a simple search.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryType ADVANCED_SEARCH
public static final QueryType SIMPLE_SEARCH
public static final QueryType GEO_SEARCH
public static final QueryType QUICK_SEARCH
public static final QueryType GOOGLE_SEARCH
public static final QueryType GENERIC_SEARCH
public static final QueryType BROWSE
public static QueryType[] values()
for (QueryType c : QueryType.values()) System.out.println(c);
public static QueryType 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 © 2020. All Rights Reserved.