Uses of Class
com.couchbase.client.java.search.SearchQuery
-
Packages that use SearchQuery Package Description com.couchbase.client.java Holds all classes that are needed for the Couchbase Java SDK.com.couchbase.client.java.search Namespace for various search-service related classes.com.couchbase.client.java.search.queries Contains the various APIs for search queries. -
-
Uses of SearchQuery in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type SearchQuery Modifier and Type Method Description CompletableFuture<SearchResult>AsyncCluster. searchQuery(String indexName, SearchQuery query)Performs a Full Text Search (FTS) query with defaultSearchOptions.CompletableFuture<SearchResult>AsyncCluster. searchQuery(String indexName, SearchQuery query, SearchOptions options)Performs a Full Text Search (FTS) query with customSearchOptions.SearchResultCluster. searchQuery(String indexName, SearchQuery query)Performs a Full Text Search (FTS) query with defaultSearchOptions.SearchResultCluster. searchQuery(String indexName, SearchQuery query, SearchOptions options)Performs a Full Text Search (FTS) query with customSearchOptions.Mono<ReactiveSearchResult>ReactiveCluster. searchQuery(String indexName, SearchQuery query)Performs a Full Text Search (FTS) query with defaultSearchOptions.Mono<ReactiveSearchResult>ReactiveCluster. searchQuery(String indexName, SearchQuery query, SearchOptions options)Performs a Full Text Search (FTS) query with customSearchOptions. -
Uses of SearchQuery in com.couchbase.client.java.search
Methods in com.couchbase.client.java.search that return SearchQuery Modifier and Type Method Description SearchQuerySearchQuery. boost(double boost)Methods in com.couchbase.client.java.search with parameters of type SearchQuery Modifier and Type Method Description static ConjunctionQuerySearchQuery. conjuncts(SearchQuery... queries)Prepare aConjunctionQuerybody.static DisjunctionQuerySearchQuery. disjuncts(SearchQuery... queries)Prepare aDisjunctionQuerybody. -
Uses of SearchQuery in com.couchbase.client.java.search.queries
Subclasses of SearchQuery in com.couchbase.client.java.search.queries Modifier and Type Class Description classAbstractCompoundQueryBase class for FTS queries that are composite, compounding several otherSearchQuery.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 search query which allows to match inside a geo polygon.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 types with arguments of type SearchQuery Modifier and Type Method Description List<SearchQuery>AbstractCompoundQuery. childQueries()Methods in com.couchbase.client.java.search.queries with parameters of type SearchQuery Modifier and Type Method Description protected voidAbstractCompoundQuery. addAll(SearchQuery... queries)ConjunctionQueryConjunctionQuery. and(SearchQuery... queries)BooleanQueryBooleanQuery. must(SearchQuery... mustQueries)BooleanQueryBooleanQuery. mustNot(SearchQuery... mustNotQueries)DisjunctionQueryDisjunctionQuery. or(SearchQuery... queries)BooleanQueryBooleanQuery. should(SearchQuery... shouldQueries)Constructors in com.couchbase.client.java.search.queries with parameters of type SearchQuery Constructor Description AbstractCompoundQuery(SearchQuery... queries)ConjunctionQuery(SearchQuery... queries)DisjunctionQuery(SearchQuery... queries)
-