Uses of Class
org.elasticsearch.index.query.BaseQueryBuilder

Packages that use BaseQueryBuilder
org.elasticsearch.index.query   
 

Uses of BaseQueryBuilder in org.elasticsearch.index.query
 

Subclasses of BaseQueryBuilder in org.elasticsearch.index.query
 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.
 



Copyright © 2009-2012. All Rights Reserved.