Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class AllDeletedFilterReader

    Filters the incoming reader and makes all documents appear deleted.

    Inheritance
    object
    IndexReader
    AtomicReader
    FilterAtomicReader
    AllDeletedFilterReader
    Implements
    IDisposable
    Inherited Members
    FilterAtomicReader.Unwrap(AtomicReader)
    FilterAtomicReader.m_input
    FilterAtomicReader.FieldInfos
    FilterAtomicReader.GetTermVectors(int)
    FilterAtomicReader.MaxDoc
    FilterAtomicReader.Document(int, StoredFieldVisitor)
    FilterAtomicReader.DoClose()
    FilterAtomicReader.Fields
    FilterAtomicReader.ToString()
    FilterAtomicReader.GetNumericDocValues(string)
    FilterAtomicReader.GetBinaryDocValues(string)
    FilterAtomicReader.GetSortedDocValues(string)
    FilterAtomicReader.GetSortedSetDocValues(string)
    FilterAtomicReader.GetNormValues(string)
    FilterAtomicReader.GetDocsWithField(string)
    FilterAtomicReader.CheckIntegrity()
    AtomicReader.Context
    AtomicReader.AtomicContext
    AtomicReader.HasNorms(string)
    AtomicReader.DocFreq(Term)
    AtomicReader.TotalTermFreq(Term)
    AtomicReader.GetSumDocFreq(string)
    AtomicReader.GetDocCount(string)
    AtomicReader.GetSumTotalTermFreq(string)
    AtomicReader.GetTerms(string)
    AtomicReader.GetTermDocsEnum(Term)
    AtomicReader.GetTermPositionsEnum(Term)
    IndexReader.AddReaderDisposedListener(IReaderDisposedListener)
    IndexReader.RemoveReaderDisposedListener(IReaderDisposedListener)
    IndexReader.RegisterParentReader(IndexReader)
    IndexReader.RefCount
    IndexReader.IncRef()
    IndexReader.TryIncRef()
    IndexReader.DecRef()
    IndexReader.EnsureOpen()
    IndexReader.Equals(object)
    IndexReader.GetHashCode()
    IndexReader.Open(Directory)
    IndexReader.Open(Directory, int)
    IndexReader.Open(IndexWriter, bool)
    IndexReader.Open(IndexCommit)
    IndexReader.Open(IndexCommit, int)
    IndexReader.GetTermVector(int, string)
    IndexReader.NumDeletedDocs
    IndexReader.Document(int)
    IndexReader.Document(int, ISet<string>)
    IndexReader.HasDeletions
    IndexReader.Dispose()
    IndexReader.Dispose(bool)
    IndexReader.Leaves
    IndexReader.CoreCacheKey
    IndexReader.CombinedCoreAndDeletesKey
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Lucene.Net.Index
    Assembly: Lucene.Net.TestFramework.dll
    Syntax
    public class AllDeletedFilterReader : FilterAtomicReader, IDisposable

    Constructors

    AllDeletedFilterReader(AtomicReader)

    Filters the incoming reader and makes all documents appear deleted.

    Declaration
    public AllDeletedFilterReader(AtomicReader @in)
    Parameters
    Type Name Description
    AtomicReader in

    Properties

    LiveDocs

    Returns the Lucene.Net.Util.IBits representing live (not deleted) docs. A set bit indicates the doc ID has not been deleted. If this method returns null it means there are no deleted documents (all documents are live).

    The returned instance has been safely published for use by multiple threads without additional synchronization.
    Declaration
    public override IBits LiveDocs { get; }
    Property Value
    Type Description
    IBits
    Overrides
    Lucene.Net.Index.FilterAtomicReader.LiveDocs

    NumDocs

    Returns the number of documents in this index.

    Declaration
    public override int NumDocs { get; }
    Property Value
    Type Description
    int
    Overrides
    Lucene.Net.Index.FilterAtomicReader.NumDocs

    Implements

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