Uses of Class
com.couchbase.client.java.search.queries.NumericRangeQuery
-
Packages that use NumericRangeQuery Package Description 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 NumericRangeQuery in com.couchbase.client.java.search
Methods in com.couchbase.client.java.search that return NumericRangeQuery Modifier and Type Method Description static NumericRangeQuery
SearchQuery. numericRange()
Prepare aNumericRangeQuery
body. -
Uses of NumericRangeQuery in com.couchbase.client.java.search.queries
Methods in com.couchbase.client.java.search.queries that return NumericRangeQuery Modifier and Type Method Description NumericRangeQuery
NumericRangeQuery. boost(double boost)
NumericRangeQuery
NumericRangeQuery. field(String field)
NumericRangeQuery
NumericRangeQuery. max(double max)
Sets the upper boundary of the range.NumericRangeQuery
NumericRangeQuery. max(double max, boolean inclusive)
Sets the upper boundary of the range, inclusive or not depending on the second parameter.NumericRangeQuery
NumericRangeQuery. min(double min)
Sets the lower boundary of the range.NumericRangeQuery
NumericRangeQuery. min(double min, boolean inclusive)
Sets the lower boundary of the range, inclusive or not depending on the second parameter.
-