Uses of Class
org.apache.lucene.index.SegmentReadState
-
Packages that use SegmentReadState Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.lucene90.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.lucene94 Lucene 9.3 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. -
-
Uses of SegmentReadState in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type SegmentReadState Modifier and Type Method Description abstract DocValuesProducerDocValuesFormat. fieldsProducer(SegmentReadState state)Returns aDocValuesProducerto read docvalues from the index.abstract FieldsProducerPostingsFormat. fieldsProducer(SegmentReadState state)Reads a segment.abstract KnnVectorsReaderKnnVectorsFormat. fieldsReader(SegmentReadState state)Returns aKnnVectorsReaderto read the vectors from the index.abstract PointsReaderPointsFormat. fieldsReader(SegmentReadState state)Reads a segment.abstract voidPostingsReaderBase. init(IndexInput termsIn, SegmentReadState state)Performs any initialization, such as reading and verifying the header from the provided terms dictionaryIndexInput.abstract NormsProducerNormsFormat. normsProducer(SegmentReadState state)Returns aNormsProducerto read norms from the index. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene90
Methods in org.apache.lucene.codecs.lucene90 with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerLucene90DocValuesFormat. fieldsProducer(SegmentReadState state)FieldsProducerLucene90PostingsFormat. fieldsProducer(SegmentReadState state)PointsReaderLucene90PointsFormat. fieldsReader(SegmentReadState state)voidLucene90PostingsReader. init(IndexInput termsIn, SegmentReadState state)NormsProducerLucene90NormsFormat. normsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene90 with parameters of type SegmentReadState Constructor Description Lucene90PointsReader(SegmentReadState readState)Sole constructorLucene90PostingsReader(SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene90.blocktree
Constructors in org.apache.lucene.codecs.lucene90.blocktree with parameters of type SegmentReadState Constructor Description Lucene90BlockTreeTermsReader(PostingsReaderBase postingsReader, SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene94
Methods in org.apache.lucene.codecs.lucene94 with parameters of type SegmentReadState Modifier and Type Method Description KnnVectorsReaderLucene94HnswVectorsFormat. fieldsReader(SegmentReadState state) -
Uses of SegmentReadState in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerPerFieldDocValuesFormat. fieldsProducer(SegmentReadState state)FieldsProducerPerFieldPostingsFormat. fieldsProducer(SegmentReadState state)KnnVectorsReaderPerFieldKnnVectorsFormat. fieldsReader(SegmentReadState state)Constructors in org.apache.lucene.codecs.perfield with parameters of type SegmentReadState Constructor Description FieldsReader(SegmentReadState readState)Create a FieldsReader over a segment, opening VectorReaders for each KnnVectorsFormat specified by the indexed numeric vector fields. -
Uses of SegmentReadState in org.apache.lucene.index
Constructors in org.apache.lucene.index with parameters of type SegmentReadState Constructor Description SegmentReadState(SegmentReadState other, String newSegmentSuffix)Create aSegmentReadState.
-