Uses of Class
org.apache.lucene.codecs.BlockTermState
-
Packages that use BlockTermState 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. -
-
Uses of BlockTermState in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return BlockTermState Modifier and Type Method Description abstract BlockTermStatePostingsReaderBase. newTermState()Return a newly created empty TermStateabstract BlockTermStatePushPostingsWriterBase. newTermState()Return a newly created empty TermStateabstract BlockTermStatePostingsWriterBase. writeTerm(BytesRef term, TermsEnum termsEnum, FixedBitSet docsSeen, NormsProducer norms)Write all postings for one term; use the providedTermsEnumto pull aPostingsEnum.BlockTermStatePushPostingsWriterBase. writeTerm(BytesRef term, TermsEnum termsEnum, FixedBitSet docsSeen, NormsProducer norms)Methods in org.apache.lucene.codecs with parameters of type BlockTermState Modifier and Type Method Description abstract voidPostingsReaderBase. decodeTerm(DataInput in, FieldInfo fieldInfo, BlockTermState state, boolean absolute)Actually decode metadata for next termabstract voidPostingsWriterBase. encodeTerm(DataOutput out, FieldInfo fieldInfo, BlockTermState state, boolean absolute)Encode metadata as long[] and byte[].abstract voidPushPostingsWriterBase. finishTerm(BlockTermState state)Finishes the current term.abstract ImpactsEnumPostingsReaderBase. impacts(FieldInfo fieldInfo, BlockTermState state, int flags)Return aImpactsEnumthat computes impacts withscorer.abstract PostingsEnumPostingsReaderBase. postings(FieldInfo fieldInfo, BlockTermState state, PostingsEnum reuse, int flags)Must fully consume state, since after this call that TermState may be reused. -
Uses of BlockTermState in org.apache.lucene.codecs.lucene90
Subclasses of BlockTermState in org.apache.lucene.codecs.lucene90 Modifier and Type Class Description static classLucene90PostingsFormat.IntBlockTermStateHolds all state required forLucene90PostingsReaderto produce aPostingsEnumwithout re-seeking the terms dict.Methods in org.apache.lucene.codecs.lucene90 that return BlockTermState Modifier and Type Method Description BlockTermStateLucene90PostingsReader. newTermState()Methods in org.apache.lucene.codecs.lucene90 with parameters of type BlockTermState Modifier and Type Method Description voidLucene90PostingsReader. decodeTerm(DataInput in, FieldInfo fieldInfo, BlockTermState _termState, boolean absolute)voidLucene90PostingsWriter. encodeTerm(DataOutput out, FieldInfo fieldInfo, BlockTermState _state, boolean absolute)voidLucene90PostingsWriter. finishTerm(BlockTermState _state)Called when we are done adding docs to this termImpactsEnumLucene90PostingsReader. impacts(FieldInfo fieldInfo, BlockTermState state, int flags)PostingsEnumLucene90PostingsReader. postings(FieldInfo fieldInfo, BlockTermState termState, PostingsEnum reuse, int flags)
-