Package com.yahoo.search
Enum Query.Type
- java.lang.Object
-
- java.lang.Enum<Query.Type>
-
- com.yahoo.search.Query.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Query.Type>
- Enclosing class:
- Query
public static enum Query.Type extends Enum<Query.Type>
The type of the query
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
asInt()
static Query.Type
getType(String typeString)
Converts a type argument value into a query typeString
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.
-
-
-
Enum Constant Detail
-
ALL
public static final Query.Type ALL
-
ANY
public static final Query.Type ANY
-
PHRASE
public static final Query.Type PHRASE
-
ADVANCED
public static final Query.Type ADVANCED
-
WEB
public static final Query.Type WEB
-
PROGRAMMATIC
public static final Query.Type PROGRAMMATIC
-
YQL
public static final Query.Type YQL
-
SELECT
public static final Query.Type SELECT
-
-
Method Detail
-
values
public static Query.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Query.Type c : Query.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Query.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getType
public static Query.Type getType(String typeString)
Converts a type argument value into a query type
-
asInt
public int asInt()
-
toString
public String toString()
- Overrides:
toString
in classEnum<Query.Type>
-
-