Uses of Class
com.couchbase.client.java.search.queries.DateRangeQuery
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 DateRangeQuery in com.couchbase.client.java.search
Methods in com.couchbase.client.java.search that return DateRangeQuery Modifier and Type Method Description static DateRangeQuery
SearchQuery. dateRange()
Prepare aDateRangeQuery
body. -
Uses of DateRangeQuery in com.couchbase.client.java.search.queries
Methods in com.couchbase.client.java.search.queries that return DateRangeQuery Modifier and Type Method Description DateRangeQuery
DateRangeQuery. boost(double boost)
DateRangeQuery
DateRangeQuery. dateTimeParser(String dateTimeParser)
The name of the date/time parser to use to interpretstart(String)
andend(String)
.DateRangeQuery
DateRangeQuery. end(String end)
Sets the upper boundary of the range.DateRangeQuery
DateRangeQuery. end(String end, boolean inclusive)
Sets the upper boundary of the range, inclusive or not depending on the second parameter.DateRangeQuery
DateRangeQuery. end(Instant end)
Sets the upper boundary of the range.DateRangeQuery
DateRangeQuery. end(Instant end, boolean inclusive)
Sets the upper boundary of the range, inclusive or not depending on the second parameter.DateRangeQuery
DateRangeQuery. field(String field)
DateRangeQuery
DateRangeQuery. start(String start)
Sets the lower boundary of the range.DateRangeQuery
DateRangeQuery. start(String start, boolean inclusive)
Sets the lower boundary of the range, inclusive or not depending on the second parameter.DateRangeQuery
DateRangeQuery. start(Instant start)
Sets the lower boundary of the range.DateRangeQuery
DateRangeQuery. start(Instant start, boolean inclusive)
Sets the lower boundary of the range, inclusive or not depending on the second parameter.