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 AbstractFtsQuerySearchQuery. query()Methods in com.couchbase.client.java.search with parameters of type AbstractFtsQuery Modifier and Type Method Description static ConjunctionQuerySearchQuery. conjuncts(AbstractFtsQuery... queries)Prepare aConjunctionQuerybody.static DisjunctionQuerySearchQuery. disjuncts(AbstractFtsQuery... queries)Prepare aDisjunctionQuerybody.Constructors in com.couchbase.client.java.search with parameters of type AbstractFtsQuery Constructor Description SearchQuery(String indexName, AbstractFtsQuery queryPart)Prepare an FTSSearchQueryon 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 classAbstractCompoundQueryBase class for FTS queries that are composite, compounding several otherAbstractFtsQuery.classBooleanFieldQueryA FTS query that queries fields explicitly indexed as boolean.classBooleanQueryA compound FTS query that allows various combinations of sub-queries.classConjunctionQueryA compound FTS query that performs a logical AND between all its sub-queries (conjunction).classDateRangeQueryA FTS query that matches documents on a range of dates.classDisjunctionQueryA compound FTS query that performs a logical OR between all its sub-queries (disjunction).classDocIdQueryA FTS query that matches on Couchbase document IDs.classGeoBoundingBoxQueryA FTS query which allows to match geo bounding boxes.classGeoDistanceQueryA FTS query which allows to match on geo distances.classGeoPolygonQueryA FTS query which allows to match on geo polygons.classMatchAllQueryA FTS query that matches all indexed documents (usually for debugging purposes).classMatchNoneQueryA FTS query that matches 0 document (usually for debugging purposes).classMatchPhraseQueryA FTS query that matches several given terms (a "phrase"), applying further processing like analyzers to them.classMatchQueryA FTS query that matches a given term, applying further processing to it like analyzers, stemming and evenfuzziness.classNumericRangeQueryA FTS query that matches documents on a range of values.classPhraseQueryA FTS query that matches several terms (a "phrase") as is.classPrefixQueryA FTS query that allows for simple matching on a given prefix.classQueryStringQueryA FTS query that performs a search according to the "query string" syntax.classRegexpQueryA FTS query that allows for simple matching of regular expressions.classTermQueryA FTS query that matches terms (without further analysis).classTermRangeQueryA FTS query that matches documents on a range of values.classWildcardQueryAn 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 AbstractFtsQueryAbstractFtsQuery. 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 voidAbstractCompoundQuery. addAll(AbstractFtsQuery... queries)ConjunctionQueryConjunctionQuery. and(AbstractFtsQuery... queries)BooleanQueryBooleanQuery. must(AbstractFtsQuery... mustQueries)BooleanQueryBooleanQuery. mustNot(AbstractFtsQuery... mustNotQueries)DisjunctionQueryDisjunctionQuery. or(AbstractFtsQuery... queries)BooleanQueryBooleanQuery. 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)
-