public enum QueryType extends Enum<QueryType>
| 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 QueryType_None
public static final QueryType QueryType_MatchQuery
public static final QueryType QueryType_MatchPhraseQuery
public static final QueryType QueryType_TermQuery
public static final QueryType QueryType_RangeQuery
public static final QueryType QueryType_PrefixQuery
public static final QueryType QueryType_BoolQuery
public static final QueryType QueryType_ConstScoreQuery
public static final QueryType QueryType_FunctionScoreQuery
public static final QueryType QueryType_FunctionsScoreQuery
public static final QueryType QueryType_NestedQuery
public static final QueryType QueryType_WildcardQuery
public static final QueryType QueryType_MatchAllQuery
public static final QueryType QueryType_GeoBoundingBoxQuery
public static final QueryType QueryType_GeoDistanceQuery
public static final QueryType QueryType_GeoPolygonQuery
public static final QueryType QueryType_TermsQuery
public static final QueryType QueryType_ExistsQuery
public static final QueryType QueryType_KnnVectorQuery
public static final QueryType QueryType_SuffixQuery
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 © 2024. All Rights Reserved.