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.blockterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.bloom Codec PostingsFormat for fast access to low-frequency terms such as primary key fields.org.apache.lucene.codecs.idversion A primary-key postings format that associates a version (long) with each term and can provide fail-fast lookups by ID and version.org.apache.lucene.codecs.lucene50 Components from the Lucene 5.0 index format Seeorg.apache.lucene.codecs.lucene80for an overview of the index format.org.apache.lucene.codecs.lucene60 Components from the Lucene 6.0 index format.org.apache.lucene.codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84for 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.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.uniformsplit.sharedterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search.suggest.document Support for document suggestion -
-
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 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.blockterms
Constructors in org.apache.lucene.codecs.blockterms with parameters of type SegmentReadState Constructor Description BlockTermsReader(TermsIndexReaderBase indexReader, PostingsReaderBase postingsReader, SegmentReadState state)FixedGapTermsIndexReader(SegmentReadState state)VariableGapTermsIndexReader(SegmentReadState state) -
Uses of SegmentReadState in org.apache.lucene.codecs.blocktree
Constructors in org.apache.lucene.codecs.blocktree with parameters of type SegmentReadState Constructor Description BlockTreeTermsReader(PostingsReaderBase postingsReader, SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.blocktreeords
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerBlockTreeOrdsPostingsFormat. fieldsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.blocktreeords with parameters of type SegmentReadState Constructor Description OrdsBlockTreeTermsReader(PostingsReaderBase postingsReader, SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.bloom
Methods in org.apache.lucene.codecs.bloom with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerBloomFilteringPostingsFormat. fieldsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.bloom with parameters of type SegmentReadState Constructor Description BloomFilteredFieldsProducer(SegmentReadState state) -
Uses of SegmentReadState in org.apache.lucene.codecs.idversion
Methods in org.apache.lucene.codecs.idversion with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerIDVersionPostingsFormat. fieldsProducer(SegmentReadState state)voidIDVersionPostingsReader. init(IndexInput termsIn, SegmentReadState state)Constructors in org.apache.lucene.codecs.idversion with parameters of type SegmentReadState Constructor Description VersionBlockTreeTermsReader(PostingsReaderBase postingsReader, SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene50
Methods in org.apache.lucene.codecs.lucene50 with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerLucene50PostingsFormat. fieldsProducer(SegmentReadState state)voidLucene50PostingsReader. init(IndexInput termsIn, SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene50 with parameters of type SegmentReadState Constructor Description Lucene50PostingsReader(SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene60
Fields in org.apache.lucene.codecs.lucene60 declared as SegmentReadState Modifier and Type Field Description (package private) SegmentReadStateLucene60PointsReader. readStateMethods in org.apache.lucene.codecs.lucene60 with parameters of type SegmentReadState Modifier and Type Method Description PointsReaderLucene60PointsFormat. fieldsReader(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene60 with parameters of type SegmentReadState Constructor Description Lucene60PointsReader(SegmentReadState readState)Sole constructor -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene70
Methods in org.apache.lucene.codecs.lucene70 with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerLucene70DocValuesFormat. fieldsProducer(SegmentReadState state)NormsProducerLucene70NormsFormat. normsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene70 with parameters of type SegmentReadState Constructor Description Lucene70DocValuesProducer(SegmentReadState state, java.lang.String dataCodec, java.lang.String dataExtension, java.lang.String metaCodec, java.lang.String metaExtension)expert: instantiates a new readerLucene70NormsProducer(SegmentReadState state, java.lang.String dataCodec, java.lang.String dataExtension, java.lang.String metaCodec, java.lang.String metaExtension) -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene80
Methods in org.apache.lucene.codecs.lucene80 with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerLucene80DocValuesFormat. fieldsProducer(SegmentReadState state)NormsProducerLucene80NormsFormat. normsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene80 with parameters of type SegmentReadState Constructor Description Lucene80DocValuesProducer(SegmentReadState state, java.lang.String dataCodec, java.lang.String dataExtension, java.lang.String metaCodec, java.lang.String metaExtension)expert: instantiates a new readerLucene80NormsProducer(SegmentReadState state, java.lang.String dataCodec, java.lang.String dataExtension, java.lang.String metaCodec, java.lang.String metaExtension) -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene84
Methods in org.apache.lucene.codecs.lucene84 with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerLucene84PostingsFormat. fieldsProducer(SegmentReadState state)voidLucene84PostingsReader. init(IndexInput termsIn, SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene84 with parameters of type SegmentReadState Constructor Description Lucene84PostingsReader(SegmentReadState state)Sole constructor. -
Uses of SegmentReadState in org.apache.lucene.codecs.lucene86
Fields in org.apache.lucene.codecs.lucene86 declared as SegmentReadState Modifier and Type Field Description (package private) SegmentReadStateLucene86PointsReader. readStateMethods in org.apache.lucene.codecs.lucene86 with parameters of type SegmentReadState Modifier and Type Method Description PointsReaderLucene86PointsFormat. fieldsReader(SegmentReadState state)Constructors in org.apache.lucene.codecs.lucene86 with parameters of type SegmentReadState Constructor Description Lucene86PointsReader(SegmentReadState readState)Sole constructor -
Uses of SegmentReadState in org.apache.lucene.codecs.memory
Methods in org.apache.lucene.codecs.memory with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerDirectDocValuesFormat. fieldsProducer(SegmentReadState state)FieldsProducerDirectPostingsFormat. fieldsProducer(SegmentReadState state)FieldsProducerFSTPostingsFormat. fieldsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.memory with parameters of type SegmentReadState Constructor Description DirectDocValuesProducer(SegmentReadState state, java.lang.String dataCodec, java.lang.String dataExtension, java.lang.String metaCodec, java.lang.String metaExtension)DirectField(SegmentReadState state, java.lang.String field, Terms termsIn, int minSkipCount, int lowFreqCutoff)DirectFields(SegmentReadState state, Fields fields, int minSkipCount, int lowFreqCutoff)FSTTermsReader(SegmentReadState state, PostingsReaderBase postingsReader) -
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)Constructors in org.apache.lucene.codecs.perfield with parameters of type SegmentReadState Constructor Description FieldsReader(SegmentReadState readState)FieldsReader(SegmentReadState readState) -
Uses of SegmentReadState in org.apache.lucene.codecs.simpletext
Fields in org.apache.lucene.codecs.simpletext declared as SegmentReadState Modifier and Type Field Description (package private) SegmentReadStateSimpleTextPointsReader. readStateMethods in org.apache.lucene.codecs.simpletext with parameters of type SegmentReadState Modifier and Type Method Description DocValuesProducerSimpleTextDocValuesFormat. fieldsProducer(SegmentReadState state)FieldsProducerSimpleTextPostingsFormat. fieldsProducer(SegmentReadState state)PointsReaderSimpleTextPointsFormat. fieldsReader(SegmentReadState state)NormsProducerSimpleTextNormsFormat. normsProducer(SegmentReadState state)Constructors in org.apache.lucene.codecs.simpletext with parameters of type SegmentReadState Constructor Description SimpleTextDocValuesReader(SegmentReadState state, java.lang.String ext)SimpleTextFieldsReader(SegmentReadState state)SimpleTextNormsProducer(SegmentReadState state)SimpleTextPointsReader(SegmentReadState readState) -
Uses of SegmentReadState in org.apache.lucene.codecs.uniformsplit
Methods in org.apache.lucene.codecs.uniformsplit with parameters of type SegmentReadState Modifier and Type Method Description protected IndexDictionary.BrowserSupplierUniformSplitTermsReader. createDictionaryBrowserSupplier(SegmentReadState state, IndexInput dictionaryInput, FieldMetadata fieldMetadata, BlockDecoder blockDecoder, boolean dictionaryOnHeap)protected FieldsProducerUniformSplitPostingsFormat. createUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder)FieldsProducerUniformSplitPostingsFormat. fieldsProducer(SegmentReadState state)protected voidUniformSplitTermsReader. fillFieldMap(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap, IndexInput dictionaryInput, IndexInput blockInput, java.util.Collection<FieldMetadata> fieldMetadataCollection, FieldInfos fieldInfos)Constructors in org.apache.lucene.codecs.uniformsplit with parameters of type SegmentReadState Constructor Description UniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap)UniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap, FieldMetadata.Serializer fieldMetadataReader, java.lang.String codecName, int versionStart, int versionCurrent, java.lang.String termsBlocksExtension, java.lang.String dictionaryExtension) -
Uses of SegmentReadState in org.apache.lucene.codecs.uniformsplit.sharedterms
Methods in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type SegmentReadState Modifier and Type Method Description protected FieldsProducerSTUniformSplitPostingsFormat. createUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder)protected voidSTUniformSplitTermsReader. fillFieldMap(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap, IndexInput dictionaryInput, IndexInput blockInput, java.util.Collection<FieldMetadata> fieldMetadataCollection, FieldInfos fieldInfos)Constructors in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type SegmentReadState Constructor Description STUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap)STUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder, boolean dictionaryOnHeap, FieldMetadata.Serializer fieldMetadataReader, java.lang.String codecName, int versionStart, int versionCurrent, java.lang.String termsBlocksExtension, java.lang.String dictionaryExtension) -
Uses of SegmentReadState in org.apache.lucene.index
Constructors in org.apache.lucene.index with parameters of type SegmentReadState Constructor Description SegmentReadState(SegmentReadState other, java.lang.String newSegmentSuffix)Create aSegmentReadState. -
Uses of SegmentReadState in org.apache.lucene.search.suggest.document
Methods in org.apache.lucene.search.suggest.document with parameters of type SegmentReadState Modifier and Type Method Description FieldsProducerCompletionPostingsFormat. fieldsProducer(SegmentReadState state)Constructors in org.apache.lucene.search.suggest.document with parameters of type SegmentReadState Constructor Description CompletionFieldsProducer(java.lang.String codecName, SegmentReadState state, CompletionPostingsFormat.FSTLoadMode fstLoadMode)
-