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.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.lucene80 Lucene 8.0 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.lucene50
Methods in org.apache.lucene.codecs.lucene50 with parameters of type SegmentWriteState Modifier and Type Method Description FieldsConsumerLucene50PostingsFormat. fieldsConsumer(SegmentWriteState state)voidLucene50PostingsWriter. init(IndexOutput termsOut, SegmentWriteState state)Constructors in org.apache.lucene.codecs.lucene50 with parameters of type SegmentWriteState Constructor Description Lucene50PostingsWriter(SegmentWriteState state)Creates a postings writer -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene60
Methods in org.apache.lucene.codecs.lucene60 with parameters of type SegmentWriteState Modifier and Type Method Description PointsWriterLucene60PointsFormat. fieldsWriter(SegmentWriteState state)Constructors in org.apache.lucene.codecs.lucene60 with parameters of type SegmentWriteState Constructor Description Lucene60PointsWriter(SegmentWriteState writeState)Uses the defaults values formaxPointsInLeafNode(1024) andmaxMBSortInHeap(16.0)Lucene60PointsWriter(SegmentWriteState writeState, int maxPointsInLeafNode, double maxMBSortInHeap)Full constructor -
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.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.
-