Show / Hide Table of Contents

    Class FilterAtomicReader.FilterTerms

    Base class for filtering Terms implementations.

    NOTE: If the order of terms and documents is not changed, and if these terms are going to be intersected with automata, you could consider overriding Intersect(CompiledAutomaton, BytesRef) for better performance.

    Inheritance
    System.Object
    Terms
    FilterAtomicReader.FilterTerms
    Inherited Members
    Terms.Intersect(CompiledAutomaton, BytesRef)
    Terms.EMPTY_ARRAY
    Namespace: Lucene.Net.Index
    Assembly: Lucene.Net.dll
    Syntax
    public class FilterTerms : Terms

    Constructors

    | Improve this Doc View Source

    FilterTerms(Terms)

    Creates a new FilterAtomicReader.FilterTerms

    Declaration
    public FilterTerms(Terms input)
    Parameters
    Type Name Description
    Terms input

    the underlying Terms instance.

    Fields

    | Improve this Doc View Source

    m_input

    The underlying Terms instance.

    Declaration
    protected readonly Terms m_input
    Field Value
    Type Description
    Terms

    Properties

    | Improve this Doc View Source

    Comparer

    Declaration
    public override IComparer<BytesRef> Comparer { get; }
    Property Value
    Type Description
    IComparer<BytesRef>
    Overrides
    Terms.Comparer
    | Improve this Doc View Source

    Count

    Declaration
    public override long Count { get; }
    Property Value
    Type Description
    System.Int64
    Overrides
    Terms.Count
    | Improve this Doc View Source

    DocCount

    Declaration
    public override int DocCount { get; }
    Property Value
    Type Description
    System.Int32
    Overrides
    Terms.DocCount
    | Improve this Doc View Source

    HasFreqs

    Declaration
    public override bool HasFreqs { get; }
    Property Value
    Type Description
    System.Boolean
    Overrides
    Terms.HasFreqs
    | Improve this Doc View Source

    HasOffsets

    Declaration
    public override bool HasOffsets { get; }
    Property Value
    Type Description
    System.Boolean
    Overrides
    Terms.HasOffsets
    | Improve this Doc View Source

    HasPayloads

    Declaration
    public override bool HasPayloads { get; }
    Property Value
    Type Description
    System.Boolean
    Overrides
    Terms.HasPayloads
    | Improve this Doc View Source

    HasPositions

    Declaration
    public override bool HasPositions { get; }
    Property Value
    Type Description
    System.Boolean
    Overrides
    Terms.HasPositions
    | Improve this Doc View Source

    SumDocFreq

    Declaration
    public override long SumDocFreq { get; }
    Property Value
    Type Description
    System.Int64
    Overrides
    Terms.SumDocFreq
    | Improve this Doc View Source

    SumTotalTermFreq

    Declaration
    public override long SumTotalTermFreq { get; }
    Property Value
    Type Description
    System.Int64
    Overrides
    Terms.SumTotalTermFreq

    Methods

    | Improve this Doc View Source

    GetIterator(TermsEnum)

    Declaration
    public override TermsEnum GetIterator(TermsEnum reuse)
    Parameters
    Type Name Description
    TermsEnum reuse
    Returns
    Type Description
    TermsEnum
    Overrides
    Terms.GetIterator(TermsEnum)
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)