Class TermRangeTermsEnum

All Implemented Interfaces:
BytesRefIterator

public class TermRangeTermsEnum extends FilteredTermsEnum
Subclass of FilteredTermEnum for enumerating all terms that match the specified range parameters.

Term enumerations are always ordered by FilteredTermsEnum.getComparator(). Each term in the enumeration is greater than all that precede it.

  • Constructor Details

    • TermRangeTermsEnum

      public TermRangeTermsEnum(TermsEnum tenum, BytesRef lowerTerm, BytesRef upperTerm, boolean includeLower, boolean includeUpper)
      Enumerates all terms greater/equal than lowerTerm but less/equal than upperTerm. If an endpoint is null, it is said to be "open". Either or both endpoints may be open. Open endpoints may not be exclusive (you can't select all but the first or last term without explicitly specifying the term to exclude.)
      Parameters:
      tenum - TermsEnum to filter
      lowerTerm - The term text at the lower end of the range
      upperTerm - The term text at the upper end of the range
      includeLower - If true, the lowerTerm is included in the range.
      includeUpper - If true, the upperTerm is included in the range.
  • Method Details