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.hnsw HNSW vector helper classes.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.lucene90.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.lucene99 Lucene 9.9 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.hnsw
Methods in org.apache.lucene.codecs.hnsw with parameters of type SegmentReadState Modifier and Type Method Description abstract FlatVectorsReaderFlatVectorsFormat. fieldsReader(SegmentReadState state)Returns aKnnVectorsReaderto read the vectors 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)PointsReaderLucene90PointsFormat. fieldsReader(SegmentReadState state)NormsProducerLucene90NormsFormat. normsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene90 with parameters of type SegmentReadState Constructor Description Lucene90PointsReader(SegmentReadState readState)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.lucene99
Methods in org.apache.lucene.codecs.lucene99 with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerLucene99PostingsFormat. fieldsProducer(SegmentReadState state)FlatVectorsReaderLucene99FlatVectorsFormat. fieldsReader(SegmentReadState state)KnnVectorsReaderLucene99HnswScalarQuantizedVectorsFormat. fieldsReader(SegmentReadState state)KnnVectorsReaderLucene99HnswVectorsFormat. fieldsReader(SegmentReadState state)FlatVectorsReaderLucene99ScalarQuantizedVectorsFormat. fieldsReader(SegmentReadState state)voidLucene99PostingsReader. init(IndexInput termsIn, SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene99 with parameters of type SegmentReadState Constructor Description Lucene99FlatVectorsReader(SegmentReadState state, FlatVectorsScorer scorer)Lucene99HnswVectorsReader(SegmentReadState state, FlatVectorsReader flatVectorsReader)Lucene99PostingsReader(SegmentReadState state)Sole constructor.Lucene99ScalarQuantizedVectorsReader(SegmentReadState state, FlatVectorsReader rawVectorsReader, FlatVectorsScorer scorer) -
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.
-