Class BooleanQuery
- java.lang.Object
-
- com.couchbase.client.java.search.SearchQuery
-
- com.couchbase.client.java.search.queries.BooleanQuery
-
public class BooleanQuery extends SearchQuery
A compound FTS query that allows various combinations of sub-queries.- Since:
- 2.3.0
- Author:
- Simon Baslé, Michael Nitschinger
-
-
Field Summary
-
Fields inherited from class com.couchbase.client.java.search.SearchQuery
boost
-
-
Constructor Summary
Constructors Constructor Description BooleanQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanQuery
boost(double boost)
BooleanQuery
must(SearchQuery... mustQueries)
BooleanQuery
mustNot(SearchQuery... mustNotQueries)
BooleanQuery
should(SearchQuery... shouldQueries)
BooleanQuery
shouldMin(int minForShould)
CoreSearchQuery
toCore()
-
Methods inherited from class com.couchbase.client.java.search.SearchQuery
booleanField, booleans, conjuncts, dateRange, disjuncts, docId, export, geoBoundingBox, geoBoundingBox, geoDistance, geoDistance, geoPolygon, match, matchAll, matchNone, matchPhrase, numericRange, phrase, prefix, queryString, regexp, term, termRange, toString, wildcard
-
-
-
-
Method Detail
-
shouldMin
public BooleanQuery shouldMin(int minForShould)
-
must
public BooleanQuery must(SearchQuery... mustQueries)
-
mustNot
public BooleanQuery mustNot(SearchQuery... mustNotQueries)
-
should
public BooleanQuery should(SearchQuery... shouldQueries)
-
boost
public BooleanQuery boost(double boost)
- Overrides:
boost
in classSearchQuery
-
toCore
public CoreSearchQuery toCore()
- Specified by:
toCore
in classSearchQuery
-
-