Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class TermRangeTermsEnum

    Subclass of FilteredTermsEnum for enumerating all terms that match the specified range parameters.

    Term enumerations are always ordered by Comparer. Each term in the enumeration is greater than all that precede it.

    Inheritance
    object
    TermsEnum
    FilteredTermsEnum
    TermRangeTermsEnum
    Implements
    IBytesRefEnumerator
    Inherited Members
    FilteredTermsEnum.SetInitialSeekTerm(BytesRef)
    FilteredTermsEnum.NextSeekTerm(BytesRef)
    FilteredTermsEnum.Attributes
    FilteredTermsEnum.Term
    FilteredTermsEnum.Comparer
    FilteredTermsEnum.DocFreq
    FilteredTermsEnum.TotalTermFreq
    FilteredTermsEnum.SeekExact(BytesRef)
    FilteredTermsEnum.SeekCeil(BytesRef)
    FilteredTermsEnum.SeekExact(long)
    FilteredTermsEnum.Ord
    FilteredTermsEnum.Docs(IBits, DocsEnum, DocsFlags)
    FilteredTermsEnum.DocsAndPositions(IBits, DocsAndPositionsEnum, DocsAndPositionsFlags)
    FilteredTermsEnum.SeekExact(BytesRef, TermState)
    FilteredTermsEnum.GetTermState()
    FilteredTermsEnum.MoveNext()
    TermsEnum.Docs(IBits, DocsEnum)
    TermsEnum.DocsAndPositions(IBits, DocsAndPositionsEnum)
    TermsEnum.EMPTY
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Lucene.Net.Search
    Assembly: Lucene.Net.dll
    Syntax
    public class TermRangeTermsEnum : FilteredTermsEnum, IBytesRefEnumerator

    Constructors

    TermRangeTermsEnum(TermsEnum, BytesRef, BytesRef, bool, bool)

    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.)

    Declaration
    public TermRangeTermsEnum(TermsEnum tenum, BytesRef lowerTerm, BytesRef upperTerm, bool includeLower, bool includeUpper)
    Parameters
    Type Name Description
    TermsEnum tenum

    TermsEnum to filter

    BytesRef lowerTerm

    The term text at the lower end of the range

    BytesRef upperTerm

    The term text at the upper end of the range

    bool includeLower

    If true, the lowerTerm is included in the range.

    bool includeUpper

    If true, the upperTerm is included in the range.

    Methods

    Accept(BytesRef)

    Return if term is accepted, not accepted or the iteration should ended (and possibly seek).

    Declaration
    protected override FilteredTermsEnum.AcceptStatus Accept(BytesRef term)
    Parameters
    Type Name Description
    BytesRef term
    Returns
    Type Description
    FilteredTermsEnum.AcceptStatus
    Overrides
    FilteredTermsEnum.Accept(BytesRef)

    Implements

    IBytesRefEnumerator
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.