Uses of Class
org.apache.lucene.index.IndexReaderContext
-
Packages that use IndexReaderContext Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.search.payloads The payloads package provides Query mechanisms for finding and using payloads. -
-
Uses of IndexReaderContext in org.apache.lucene.index
Subclasses of IndexReaderContext in org.apache.lucene.index Modifier and Type Class Description class
AtomicReaderContext
IndexReaderContext
forAtomicReader
instances.class
CompositeReaderContext
IndexReaderContext
forCompositeReader
instance.Fields in org.apache.lucene.index declared as IndexReaderContext Modifier and Type Field Description IndexReaderContext
TermContext. topReaderContext
Holds theIndexReaderContext
of the top-levelIndexReader
, used internally only for asserting.Methods in org.apache.lucene.index that return IndexReaderContext Modifier and Type Method Description abstract IndexReaderContext
IndexReader. getContext()
Expert: Returns the rootIndexReaderContext
for thisIndexReader
's sub-reader tree.static IndexReaderContext
ReaderUtil. getTopLevelContext(IndexReaderContext context)
Walks up the reader tree and return the given context's top level reader context, or in other words the reader tree's root context.Methods in org.apache.lucene.index that return types with arguments of type IndexReaderContext Modifier and Type Method Description List<IndexReaderContext>
AtomicReaderContext. children()
List<IndexReaderContext>
CompositeReaderContext. children()
abstract List<IndexReaderContext>
IndexReaderContext. children()
Returns the context's children iff this context is a composite context otherwisenull
.Methods in org.apache.lucene.index with parameters of type IndexReaderContext Modifier and Type Method Description static TermContext
TermContext. build(IndexReaderContext context, Term term)
static IndexReaderContext
ReaderUtil. getTopLevelContext(IndexReaderContext context)
Walks up the reader tree and return the given context's top level reader context, or in other words the reader tree's root context.Constructors in org.apache.lucene.index with parameters of type IndexReaderContext Constructor Description TermContext(IndexReaderContext context)
Creates an emptyTermContext
from aIndexReaderContext
TermContext(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
-
Uses of IndexReaderContext in org.apache.lucene.search
Fields in org.apache.lucene.search declared as IndexReaderContext Modifier and Type Field Description protected IndexReaderContext
IndexSearcher. readerContext
Methods in org.apache.lucene.search that return IndexReaderContext Modifier and Type Method Description IndexReaderContext
IndexSearcher. getTopReaderContext()
Returns this searchers the top-levelIndexReaderContext
.Constructors in org.apache.lucene.search with parameters of type IndexReaderContext Constructor Description IndexSearcher(IndexReaderContext context)
Creates a searcher searching the provided top-levelIndexReaderContext
.IndexSearcher(IndexReaderContext context, ExecutorService executor)
Creates a searcher searching the provided top-levelIndexReaderContext
. -
Uses of IndexReaderContext in org.apache.lucene.search.payloads
Constructors in org.apache.lucene.search.payloads with parameters of type IndexReaderContext Constructor Description PayloadSpanUtil(IndexReaderContext context)
-