Uses of Class
org.apache.lucene.index.IndexReaderContext

Packages that use IndexReaderContext
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
 class AtomicReaderContext
          IndexReaderContext for AtomicReader instances.
 class CompositeReaderContext
          IndexReaderContext for CompositeReader instance.
 

Fields in org.apache.lucene.index declared as IndexReaderContext
 IndexReaderContext TermContext.topReaderContext
          Holds the IndexReaderContext of the top-level IndexReader, used internally only for asserting.
 

Methods in org.apache.lucene.index that return IndexReaderContext
abstract  IndexReaderContext IndexReader.getContext()
          Expert: Returns the root IndexReaderContext for this IndexReader'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
abstract  List<IndexReaderContext> IndexReaderContext.children()
          Returns the context's children iff this context is a composite context otherwise null.
 List<IndexReaderContext> CompositeReaderContext.children()
           
 List<IndexReaderContext> AtomicReaderContext.children()
           
 

Methods in org.apache.lucene.index with parameters of type IndexReaderContext
static TermContext TermContext.build(IndexReaderContext context, Term term, boolean cache)
          Creates a TermContext from a top-level IndexReaderContext and the given 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
TermContext(IndexReaderContext context)
          Creates an empty TermContext from a IndexReaderContext
TermContext(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
          Creates a TermContext with an initial TermState, IndexReader pair.
 

Uses of IndexReaderContext in org.apache.lucene.search
 

Fields in org.apache.lucene.search declared as IndexReaderContext
protected  IndexReaderContext IndexSearcher.readerContext
           
 

Methods in org.apache.lucene.search that return IndexReaderContext
 IndexReaderContext IndexSearcher.getTopReaderContext()
          Returns this searchers the top-level IndexReaderContext.
 

Constructors in org.apache.lucene.search with parameters of type IndexReaderContext
IndexSearcher(IndexReaderContext context)
          Creates a searcher searching the provided top-level IndexReaderContext.
IndexSearcher(IndexReaderContext context, ExecutorService executor)
          Creates a searcher searching the provided top-level IndexReaderContext.
 

Uses of IndexReaderContext in org.apache.lucene.search.payloads
 

Constructors in org.apache.lucene.search.payloads with parameters of type IndexReaderContext
PayloadSpanUtil(IndexReaderContext context)
           
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.