Enum Query.Type
- java.lang.Object
-
- java.lang.Enum<Query.Type>
-
- org.dashbuilder.dataprovider.backend.elasticsearch.rest.model.Query.Type
-
- All Implemented Interfaces:
Serializable,Comparable<Query.Type>
- Enclosing class:
- Query
public static enum Query.Type extends Enum<Query.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Query.TypegetType()static Query.TypevalueOf(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
-
QUERY
public static final Query.Type QUERY
-
BOOL
public static final Query.Type BOOL
-
MATCH
public static final Query.Type MATCH
-
MATCH_ALL
public static final Query.Type MATCH_ALL
-
WILDCARD
public static final Query.Type WILDCARD
-
QUERY_STRING
public static final Query.Type QUERY_STRING
-
FILTERED
public static final Query.Type FILTERED
-
FILTER
public static final Query.Type FILTER
-
AND
public static final Query.Type AND
-
OR
public static final Query.Type OR
-
NOT
public static final Query.Type NOT
-
EXISTS
public static final Query.Type EXISTS
-
TERM
public static final Query.Type TERM
-
TERMS
public static final Query.Type TERMS
-
RANGE
public static final Query.Type RANGE
-
-
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 Query.Type getType()
-
-