Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Field and Description |
---|---|
CompositeReaderContext |
IndexReaderContext.parent
The reader context for this reader's immediate parent, or null if none
|
private CompositeReaderContext |
CompositeReader.readerContext |
Modifier and Type | Method and Description |
---|---|
CompositeReaderContext |
CompositeReaderContext.Builder.build() |
(package private) static CompositeReaderContext |
CompositeReaderContext.create(CompositeReader reader) |
CompositeReaderContext |
CompositeReader.getContext() |
Modifier and Type | Method and Description |
---|---|
private IndexReaderContext |
CompositeReaderContext.Builder.build(CompositeReaderContext parent,
IndexReader reader,
int ord,
int docBase) |
Constructor and Description |
---|
CompositeReaderContext(CompositeReaderContext parent,
CompositeReader reader,
int ordInParent,
int docbaseInParent,
java.util.List<IndexReaderContext> children)
Creates a
CompositeReaderContext for intermediate readers that aren't
not top-level readers in the current context |
CompositeReaderContext(CompositeReaderContext parent,
CompositeReader reader,
int ordInParent,
int docbaseInParent,
java.util.List<IndexReaderContext> children,
java.util.List<LeafReaderContext> leaves) |
IndexReaderContext(CompositeReaderContext parent,
int ordInParent,
int docBaseInParent) |
LeafReaderContext(CompositeReaderContext parent,
LeafReader reader,
int ord,
int docBase,
int leafOrd,
int leafDocBase)
Creates a new
LeafReaderContext |