Class TermRangeQuery


  • public class TermRangeQuery
    extends SearchQuery
    A FTS query that matches documents on a range of values. At least one bound is required, and the inclusiveness of each bound can be configured.
    Since:
    2.4.5
    Author:
    Michael Nitschinger
    • Constructor Detail

      • TermRangeQuery

        public TermRangeQuery()
    • Method Detail

      • min

        public TermRangeQuery min​(String min,
                                  boolean inclusive)
        Sets the lower boundary of the range, inclusive or not depending on the second parameter.
      • max

        public TermRangeQuery max​(String max,
                                  boolean inclusive)
        Sets the upper boundary of the range, inclusive or not depending on the second parameter.
      • toCore

        public com.couchbase.client.core.api.search.CoreSearchQuery toCore()
        Specified by:
        toCore in class SearchQuery