Uses of Class
com.couchbase.client.java.search.queries.AbstractFtsQuery
-
Packages that use AbstractFtsQuery Package Description com.couchbase.client.java.search com.couchbase.client.java.search.queries -
-
Uses of AbstractFtsQuery in com.couchbase.client.java.search
Methods in com.couchbase.client.java.search that return AbstractFtsQuery Modifier and Type Method Description AbstractFtsQuery
SearchQuery. query()
Methods in com.couchbase.client.java.search with parameters of type AbstractFtsQuery Modifier and Type Method Description static ConjunctionQuery
SearchQuery. conjuncts(AbstractFtsQuery... queries)
Prepare aConjunctionQuery
body.static DisjunctionQuery
SearchQuery. disjuncts(AbstractFtsQuery... queries)
Prepare aDisjunctionQuery
body.Constructors in com.couchbase.client.java.search with parameters of type AbstractFtsQuery Constructor Description SearchQuery(String indexName, AbstractFtsQuery queryPart)
Prepare an FTSSearchQuery
on an index. -
Uses of AbstractFtsQuery in com.couchbase.client.java.search.queries
Subclasses of AbstractFtsQuery in com.couchbase.client.java.search.queries Modifier and Type Class Description class
AbstractCompoundQuery
Base class for FTS queries that are composite, compounding several otherAbstractFtsQuery
.class
BooleanFieldQuery
A FTS query that queries fields explicitly indexed as boolean.class
BooleanQuery
A compound FTS query that allows various combinations of sub-queries.class
ConjunctionQuery
A compound FTS query that performs a logical AND between all its sub-queries (conjunction).class
DateRangeQuery
A FTS query that matches documents on a range of dates.class
DisjunctionQuery
A compound FTS query that performs a logical OR between all its sub-queries (disjunction).class
DocIdQuery
A FTS query that matches on Couchbase document IDs.class
GeoBoundingBoxQuery
A FTS query which allows to match geo bounding boxes.class
GeoDistanceQuery
A FTS query which allows to match on geo distances.class
MatchAllQuery
A FTS query that matches all indexed documents (usually for debugging purposes).class
MatchNoneQuery
A FTS query that matches 0 document (usually for debugging purposes).class
MatchPhraseQuery
A FTS query that matches several given terms (a "phrase"), applying further processing like analyzers to them.class
MatchQuery
A FTS query that matches a given term, applying further processing to it like analyzers, stemming and evenfuzziness
.class
NumericRangeQuery
A FTS query that matches documents on a range of values.class
PhraseQuery
A FTS query that matches several terms (a "phrase") as is.class
PrefixQuery
A FTS query that allows for simple matching on a given prefix.class
QueryStringQuery
A FTS query that performs a search according to the "query string" syntax.class
RegexpQuery
A FTS query that allows for simple matching of regular expressions.class
TermQuery
A FTS query that matches terms (without further analysis).class
TermRangeQuery
A FTS query that matches documents on a range of values.class
WildcardQuery
An FTS query that allows for simple matching using wildcard characters (* and ?).Methods in com.couchbase.client.java.search.queries that return AbstractFtsQuery Modifier and Type Method Description AbstractFtsQuery
AbstractFtsQuery. boost(double boost)
Methods in com.couchbase.client.java.search.queries that return types with arguments of type AbstractFtsQuery Modifier and Type Method Description List<AbstractFtsQuery>
AbstractCompoundQuery. childQueries()
Methods in com.couchbase.client.java.search.queries with parameters of type AbstractFtsQuery Modifier and Type Method Description protected void
AbstractCompoundQuery. addAll(AbstractFtsQuery... queries)
ConjunctionQuery
ConjunctionQuery. and(AbstractFtsQuery... queries)
BooleanQuery
BooleanQuery. must(AbstractFtsQuery... mustQueries)
BooleanQuery
BooleanQuery. mustNot(AbstractFtsQuery... mustNotQueries)
DisjunctionQuery
DisjunctionQuery. or(AbstractFtsQuery... queries)
BooleanQuery
BooleanQuery. should(AbstractFtsQuery... shouldQueries)
Constructors in com.couchbase.client.java.search.queries with parameters of type AbstractFtsQuery Constructor Description AbstractCompoundQuery(AbstractFtsQuery... queries)
ConjunctionQuery(AbstractFtsQuery... queries)
DisjunctionQuery(AbstractFtsQuery... queries)
-