Uses of Interface
org.elasticsearch.index.query.QueryBuilder

Packages that use QueryBuilder
org.elasticsearch.action.admin.indices.validate.query Validate action. 
org.elasticsearch.action.count Count action. 
org.elasticsearch.action.deletebyquery Delete by query action. 
org.elasticsearch.action.explain Explain action. 
org.elasticsearch.action.search Search action. 
org.elasticsearch.index.percolator   
org.elasticsearch.index.query   
org.elasticsearch.search.builder   
org.elasticsearch.search.facet   
org.elasticsearch.search.facet.query   
 

Uses of QueryBuilder in org.elasticsearch.action.admin.indices.validate.query
 

Methods in org.elasticsearch.action.admin.indices.validate.query with parameters of type QueryBuilder
 ValidateQueryRequest ValidateQueryRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 ValidateQueryRequestBuilder ValidateQueryRequestBuilder.setQuery(QueryBuilder queryBuilder)
          The query source to validate.
 

Uses of QueryBuilder in org.elasticsearch.action.count
 

Methods in org.elasticsearch.action.count with parameters of type QueryBuilder
 CountRequest CountRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 CountRequestBuilder CountRequestBuilder.setQuery(QueryBuilder queryBuilder)
          The query source to execute.
 

Uses of QueryBuilder in org.elasticsearch.action.deletebyquery
 

Methods in org.elasticsearch.action.deletebyquery with parameters of type QueryBuilder
 DeleteByQueryRequest DeleteByQueryRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 DeleteByQueryRequestBuilder DeleteByQueryRequestBuilder.setQuery(QueryBuilder queryBuilder)
          The query source to execute.
 

Uses of QueryBuilder in org.elasticsearch.action.explain
 

Methods in org.elasticsearch.action.explain with parameters of type QueryBuilder
 ExplainSourceBuilder ExplainSourceBuilder.query(QueryBuilder query)
           
 ExplainRequestBuilder ExplainRequestBuilder.setQuery(QueryBuilder query)
          Sets the query to get a score explanation for.
 

Uses of QueryBuilder in org.elasticsearch.action.search
 

Methods in org.elasticsearch.action.search with parameters of type QueryBuilder
 SearchRequestBuilder SearchRequestBuilder.setQuery(QueryBuilder queryBuilder)
          Constructs a new search source builder with a search query.
 

Uses of QueryBuilder in org.elasticsearch.index.percolator
 

Methods in org.elasticsearch.index.percolator with parameters of type QueryBuilder
 void PercolatorExecutor.addQuery(String name, QueryBuilder queryBuilder)
           
 

Uses of QueryBuilder in org.elasticsearch.index.query
 

Subinterfaces of QueryBuilder in org.elasticsearch.index.query
 interface SpanQueryBuilder
           
 

Classes in org.elasticsearch.index.query that implement QueryBuilder
 class BaseQueryBuilder
           
 class BoolQueryBuilder
          A Query that matches documents matching boolean combinations of other queries.
 class BoostingQueryBuilder
          The BoostingQuery class can be used to effectively demote results that match a given query.
 class ConstantScoreQueryBuilder
          A query that wraps a filter and simply returns a constant score equal to the query boost for every document in the filter.
 class CustomBoostFactorQueryBuilder
          A query that simply applies the boost factor to another query (multiply it).
 class CustomFiltersScoreQueryBuilder
          A query that uses a filters with a script associated with them to compute the score.
 class CustomScoreQueryBuilder
          A query that uses a script to compute the score.
 class DisMaxQueryBuilder
          A query that generates the union of documents produced by its sub-queries, and that scores each document with the maximum score for that document as produced by any sub-query, plus a tie breaking increment for any additional matching sub-queries.
 class FieldMaskingSpanQueryBuilder
           
 class FieldQueryBuilder
          A query that executes the query string against a field.
 class FilteredQueryBuilder
          A query that applies a filter to the results of another query.
 class FuzzyLikeThisFieldQueryBuilder
           
 class FuzzyLikeThisQueryBuilder
           
 class FuzzyQueryBuilder
          A Query that does fuzzy matching for a specific value.
 class GeoShapeQueryBuilder
           
 class HasChildQueryBuilder
           
 class IdsQueryBuilder
          A query that will return only documents matching specific ids (and a type).
 class IndicesQueryBuilder
          A query that will execute the wrapped query only for the specified indices, and "match_all" when it does not match those indices (by default).
 class MatchAllQueryBuilder
          A query that matches on all documents.
 class MatchQueryBuilder
          Match query is a query that analyzes the text and constructs a query as the result of the analysis.
 class MoreLikeThisFieldQueryBuilder
          A more like this query that runs against a specific field.
 class MoreLikeThisQueryBuilder
          A more like this query that finds documents that are "like" the provided MoreLikeThisQueryBuilder.likeText(String) which is checked against the fields the query is constructed with.
 class MultiMatchQueryBuilder
          Same as MatchQueryBuilder but supports multiple fields.
 class NestedQueryBuilder
           
 class PrefixQueryBuilder
          A Query that matches documents containing terms with a specified prefix.
 class QueryStringQueryBuilder
          A query that parses a query string and runs it.
 class RangeQueryBuilder
          A Query that matches documents within an range of terms.
 class SpanFirstQueryBuilder
           
 class SpanNearQueryBuilder
           
 class SpanNotQueryBuilder
           
 class SpanOrQueryBuilder
           
 class SpanTermQueryBuilder
           
 class TermQueryBuilder
          A Query that matches documents containing a term.
 class TermsQueryBuilder
           
 class TopChildrenQueryBuilder
           
 class WildcardQueryBuilder
          Implements the wildcard search query.
 class WrapperQueryBuilder
          A Query builder which allows building a query thanks to a JSON string or binary data.
 

Methods in org.elasticsearch.index.query with parameters of type QueryBuilder
 DisMaxQueryBuilder DisMaxQueryBuilder.add(QueryBuilder queryBuilder)
          Add a sub-query to this disjunction.
static CustomBoostFactorQueryBuilder QueryBuilders.customBoostFactorQuery(QueryBuilder queryBuilder)
          A query that simply applies the boost fact to the wrapped query (multiplies it).
static CustomFiltersScoreQueryBuilder QueryBuilders.customFiltersScoreQuery(QueryBuilder queryBuilder)
           
static CustomScoreQueryBuilder QueryBuilders.customScoreQuery(QueryBuilder queryBuilder)
          A query that allows to define a custom scoring script.
static FilteredQueryBuilder QueryBuilders.filtered(QueryBuilder queryBuilder, FilterBuilder filterBuilder)
          Deprecated. Use filteredQuery instead (rename)
static FilteredQueryBuilder QueryBuilders.filteredQuery(QueryBuilder queryBuilder, FilterBuilder filterBuilder)
          A query that applies a filter to the results of another query.
static HasChildFilterBuilder FilterBuilders.hasChildFilter(String type, QueryBuilder query)
          Constructs a child filter, with the child type and the query to run against child documents, with the result of the filter being the *parent* documents.
static HasChildQueryBuilder QueryBuilders.hasChildQuery(String type, QueryBuilder query)
          Constructs a new NON scoring child query, with the child type and the query to run on the child documents.
static IndicesQueryBuilder QueryBuilders.indicesQuery(QueryBuilder queryBuilder, String... indices)
          A query that will execute the wrapped query only for the specified indices, and "match_all" when it does not match those indices.
 BoolQueryBuilder BoolQueryBuilder.must(QueryBuilder queryBuilder)
          Adds a query that must appear in the matching documents.
 BoolQueryBuilder BoolQueryBuilder.mustNot(QueryBuilder queryBuilder)
          Adds a query that must not appear in the matching documents.
 BoostingQueryBuilder BoostingQueryBuilder.negative(QueryBuilder negativeQuery)
           
static NestedFilterBuilder FilterBuilders.nestedFilter(String path, QueryBuilder query)
           
static NestedQueryBuilder QueryBuilders.nestedQuery(String path, QueryBuilder query)
           
 IndicesQueryBuilder IndicesQueryBuilder.noMatchQuery(QueryBuilder noMatchQuery)
          Sets the query to use when it executes on an index that does not match the indices provided.
 ParsedQuery IndexQueryParserService.parse(QueryBuilder queryBuilder)
           
 BoostingQueryBuilder BoostingQueryBuilder.positive(QueryBuilder positiveQuery)
           
static QueryFilterBuilder FilterBuilders.queryFilter(QueryBuilder queryBuilder)
          A filter that simply wraps a query.
 BoolQueryBuilder BoolQueryBuilder.should(QueryBuilder queryBuilder)
          Adds a query that should appear in the matching documents.
static TopChildrenQueryBuilder QueryBuilders.topChildrenQuery(String type, QueryBuilder query)
          Constructs a new scoring child query, with the child type and the query to run on the child documents.
 

Constructors in org.elasticsearch.index.query with parameters of type QueryBuilder
CustomBoostFactorQueryBuilder(QueryBuilder queryBuilder)
          A query that simply applies the boost factor to another query (multiply it).
CustomFiltersScoreQueryBuilder(QueryBuilder queryBuilder)
           
CustomScoreQueryBuilder(QueryBuilder queryBuilder)
          A query that simply applies the boost factor to another query (multiply it).
FilteredQueryBuilder(QueryBuilder queryBuilder, FilterBuilder filterBuilder)
          A query that applies a filter to the results of another query.
HasChildFilterBuilder(String type, QueryBuilder queryBuilder)
           
HasChildQueryBuilder(String type, QueryBuilder queryBuilder)
           
IndicesQueryBuilder(QueryBuilder queryBuilder, String... indices)
           
NestedFilterBuilder(String path, QueryBuilder queryBuilder)
           
NestedQueryBuilder(String path, QueryBuilder queryBuilder)
           
QueryFilterBuilder(QueryBuilder queryBuilder)
          A filter that simply wraps a query.
TopChildrenQueryBuilder(String type, QueryBuilder queryBuilder)
           
 

Uses of QueryBuilder in org.elasticsearch.search.builder
 

Methods in org.elasticsearch.search.builder with parameters of type QueryBuilder
 SearchSourceBuilder SearchSourceBuilder.query(QueryBuilder query)
          Constructs a new search source builder with a search query.
 

Uses of QueryBuilder in org.elasticsearch.search.facet
 

Methods in org.elasticsearch.search.facet with parameters of type QueryBuilder
static QueryFacetBuilder FacetBuilders.queryFacet(String facetName, QueryBuilder query)
           
 

Uses of QueryBuilder in org.elasticsearch.search.facet.query
 

Methods in org.elasticsearch.search.facet.query with parameters of type QueryBuilder
 QueryFacetBuilder QueryFacetBuilder.query(QueryBuilder query)
           
 



Copyright © 2009-2012. All Rights Reserved.