Uses of Interface
com.senseidb.search.client.json.req.query.Query

Packages that use Query
com.senseidb.search.client.json.req   
com.senseidb.search.client.json.req.filter   
com.senseidb.search.client.json.req.query   
com.senseidb.search.client.json.req.query.span   
 

Uses of Query in com.senseidb.search.client.json.req
 

Classes in com.senseidb.search.client.json.req that implement Query
static class Selection.Range
           Matches documents with fields that have terms within a certain range.
 class Term
          Matches documents that have fields that contain a term (not analyzed).
 class Terms
           A query that match on any (configurable) of the provided terms.
 

Methods in com.senseidb.search.client.json.req that return Query
 Query SenseiClientRequest.getQuery()
           
 

Methods in com.senseidb.search.client.json.req with parameters of type Query
 SenseiClientRequest.Builder SenseiClientRequest.Builder.query(Query query)
           
 

Uses of Query in com.senseidb.search.client.json.req.filter
 

Classes in com.senseidb.search.client.json.req.filter that implement Query
 class Ids
          Filters documents that only have the provided ids.
 

Methods in com.senseidb.search.client.json.req.filter that return Query
 Query QueryFilter.getQuery()
           
 

Methods in com.senseidb.search.client.json.req.filter with parameters of type Query
static QueryFilter Filters.query(Query query)
           
 

Constructors in com.senseidb.search.client.json.req.filter with parameters of type Query
QueryFilter(Query query)
           
 

Uses of Query in com.senseidb.search.client.json.req.query
 

Classes in com.senseidb.search.client.json.req.query that implement Query
 class BoolQuery
           A query that matches documents matching boolean combinations of other queries.
 class CustomQuery
          User may supply his own implementation of the query
 class DisMax
           A query that generates the union of documents produced by its subqueries, and that scores each document with the maximum score for that document as produced by any subquery, plus a tie breaking increment for any additional matching subqueries.
 class FilteredQuery
           A query that applies a filter to the results of another query.
 class MatchAllQuery
          A query that matches all documents.
 class PathQuery
           
 class QueryPrefix
           Matches documents that have fields containing terms with a specified prefix (not analyzed).
 class QueryWildcard
           A query that match on any (configurable) of the provided terms.
 class StringQuery
           A query that uses a query parser in order to parse its content.
 class TextQuery
           A family of text queries that accept text, analyzes it, and constructs a query out of it.
 

Methods in com.senseidb.search.client.json.req.query that return Query
 Query QueryJsonHandler.deserialize(org.json.JSONObject json)
           
 

Methods in com.senseidb.search.client.json.req.query with parameters of type Query
static FilteredQuery Queries.filteredQuery(Query query, Filter filter, double boost)
           
 org.json.JSONObject QueryJsonHandler.serialize(Query bean)
           
 

Method parameters in com.senseidb.search.client.json.req.query with type arguments of type Query
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, double boost)
           
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, double boost)
           
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, double boost)
           
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, int minimumNumberShouldMatch, double boost, boolean disableCoord)
           
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, int minimumNumberShouldMatch, double boost, boolean disableCoord)
           
static BoolQuery Queries.bool(List<Query> must, List<Query> must_not, List<Query> should, int minimumNumberShouldMatch, double boost, boolean disableCoord)
           
 

Constructors in com.senseidb.search.client.json.req.query with parameters of type Query
FilteredQuery(Query query, Filter filter, double boost)
           
 

Constructor parameters in com.senseidb.search.client.json.req.query with type arguments of type Query
BoolQuery(List<Query> must, List<Query> must_not, List<Query> should, Integer minimumNumberShouldMatch, double boost, Boolean disableCoord)
           
BoolQuery(List<Query> must, List<Query> must_not, List<Query> should, Integer minimumNumberShouldMatch, double boost, Boolean disableCoord)
           
BoolQuery(List<Query> must, List<Query> must_not, List<Query> should, Integer minimumNumberShouldMatch, double boost, Boolean disableCoord)
           
 

Uses of Query in com.senseidb.search.client.json.req.query.span
 

Classes in com.senseidb.search.client.json.req.query.span that implement Query
 class SpanFirst
           Matches spans near the beginning of a field.
 class SpanNear
           Matches spans which are near one another.
 class SpanNot
           Removes matches which overlap with another span query.
 class SpanOr
           Matches the union of its span clauses.
 class SpanTerm
           Matches spans containing a term.
 



Copyright © 2010-2012. All Rights Reserved.