public static enum Query.Type extends Enum<Query.Type>
Enum Constant and Description |
---|
ADVANCED |
ALL |
ANY |
PHRASE |
PROGRAMMATIC |
WEB |
YQL |
Modifier and Type | Field and Description |
---|---|
private int |
intValue |
private String |
stringValue |
Modifier and Type | Method and Description |
---|---|
int |
asInt() |
static Query.Type |
getType(String typeString)
Converts a type argument value into a query type
|
String |
toString() |
static Query.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Query.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.Type ALL
public static final Query.Type ANY
public static final Query.Type PHRASE
public static final Query.Type ADVANCED
public static final Query.Type WEB
public static final Query.Type PROGRAMMATIC
public static final Query.Type YQL
private final int intValue
private final String stringValue
public static Query.Type[] values()
for (Query.Type c : Query.Type.values()) System.out.println(c);
public static Query.Type 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 nullpublic static Query.Type getType(String typeString)
public int asInt()
public String toString()
toString
in class Enum<Query.Type>
Copyright © 2017. All rights reserved.