Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
org.apache.lucene.codecs.lucene80 |
Components from the Lucene 8.0 index format
See
org.apache.lucene.codecs.lucene84 for an overview
of the index format. |
org.apache.lucene.codecs.lucene84 |
Components from the Lucene 8.4 index format.
|
org.apache.lucene.codecs.lucene86 |
Lucene 8.6 file format.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
abstract DocValuesProducer |
DocValuesFormat.fieldsProducer(SegmentReadState state)
Returns a
DocValuesProducer to read docvalues from the index. |
abstract FieldsProducer |
PostingsFormat.fieldsProducer(SegmentReadState state)
Reads a segment.
|
abstract PointsReader |
PointsFormat.fieldsReader(SegmentReadState state)
Reads a segment.
|
abstract void |
PostingsReaderBase.init(IndexInput termsIn,
SegmentReadState state)
Performs any initialization, such as reading and
verifying the header from the provided terms
dictionary
IndexInput . |
abstract NormsProducer |
NormsFormat.normsProducer(SegmentReadState state)
Returns a
NormsProducer to read norms from the index. |
Constructor and Description |
---|
BlockTreeTermsReader(PostingsReaderBase postingsReader,
SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
Lucene80DocValuesFormat.fieldsProducer(SegmentReadState state) |
NormsProducer |
Lucene80NormsFormat.normsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Lucene84PostingsFormat.fieldsProducer(SegmentReadState state) |
void |
Lucene84PostingsReader.init(IndexInput termsIn,
SegmentReadState state) |
Constructor and Description |
---|
Lucene84PostingsReader(SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
PointsReader |
Lucene86PointsFormat.fieldsReader(SegmentReadState state) |
Constructor and Description |
---|
Lucene86PointsReader(SegmentReadState readState)
Sole constructor
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
PerFieldPostingsFormat.fieldsProducer(SegmentReadState state) |
DocValuesProducer |
PerFieldDocValuesFormat.fieldsProducer(SegmentReadState state) |
Constructor and Description |
---|
SegmentReadState(SegmentReadState other,
String newSegmentSuffix)
Create a
SegmentReadState . |
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.