Uses of Class
org.apache.lucene.index.SegmentWriteState
-
Packages that use SegmentWriteState 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 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.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of SegmentWriteState in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type SegmentWriteState Modifier and Type Method Description abstract DocValuesConsumerDocValuesFormat. fieldsConsumer(SegmentWriteState state)Returns aDocValuesConsumerto write docvalues to the index.abstract FieldsConsumerPostingsFormat. fieldsConsumer(SegmentWriteState state)Writes a new segmentabstract PointsWriterPointsFormat. fieldsWriter(SegmentWriteState state)Writes a new segmentabstract voidPostingsWriterBase. init(IndexOutput termsOut, SegmentWriteState state)Called once after startup, before any terms have been added.abstract NormsConsumerNormsFormat. normsConsumer(SegmentWriteState state)Returns aNormsConsumerto write norms to the index. -
Uses of SegmentWriteState in org.apache.lucene.codecs.blocktree
Constructors in org.apache.lucene.codecs.blocktree with parameters of type SegmentWriteState Constructor Description BlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)Create a new writer. -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene80
Methods in org.apache.lucene.codecs.lucene80 with parameters of type SegmentWriteState Modifier and Type Method Description DocValuesConsumerLucene80DocValuesFormat. fieldsConsumer(SegmentWriteState state)NormsConsumerLucene80NormsFormat. normsConsumer(SegmentWriteState state) -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene84
Methods in org.apache.lucene.codecs.lucene84 with parameters of type SegmentWriteState Modifier and Type Method Description FieldsConsumerLucene84PostingsFormat. fieldsConsumer(SegmentWriteState state)voidLucene84PostingsWriter. init(IndexOutput termsOut, SegmentWriteState state)Constructors in org.apache.lucene.codecs.lucene84 with parameters of type SegmentWriteState Constructor Description Lucene84PostingsWriter(SegmentWriteState state)Creates a postings writer -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene86
Methods in org.apache.lucene.codecs.lucene86 with parameters of type SegmentWriteState Modifier and Type Method Description PointsWriterLucene86PointsFormat. fieldsWriter(SegmentWriteState state)Constructors in org.apache.lucene.codecs.lucene86 with parameters of type SegmentWriteState Constructor Description Lucene86PointsWriter(SegmentWriteState writeState)Uses the defaults values formaxPointsInLeafNode(1024) andmaxMBSortInHeap(16.0)Lucene86PointsWriter(SegmentWriteState writeState, int maxPointsInLeafNode, double maxMBSortInHeap)Full constructor -
Uses of SegmentWriteState in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield with parameters of type SegmentWriteState Modifier and Type Method Description DocValuesConsumerPerFieldDocValuesFormat. fieldsConsumer(SegmentWriteState state)FieldsConsumerPerFieldPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of SegmentWriteState in org.apache.lucene.index
Constructors in org.apache.lucene.index with parameters of type SegmentWriteState Constructor Description SegmentWriteState(SegmentWriteState state, String segmentSuffix)Create a shallow copy ofSegmentWriteStatewith a new segment suffix.
-