Class Lucene60PointsWriter
- java.lang.Object
-
- org.apache.lucene.codecs.PointsWriter
-
- org.apache.lucene.codecs.lucene60.Lucene60PointsWriter
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class Lucene60PointsWriter extends PointsWriter implements Closeable
Writes dimensional values
-
-
Constructor Summary
Constructors Constructor Description Lucene60PointsWriter(SegmentWriteState writeState)Uses the defaults values formaxPointsInLeafNode(1024) andmaxMBSortInHeap(16.0)Lucene60PointsWriter(SegmentWriteState writeState, int maxPointsInLeafNode, double maxMBSortInHeap)Full constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinish()Called once at the end before closevoidmerge(MergeState mergeState)Default merge implementation to merge incoming points readers by visiting all their points and adding to this writervoidwriteField(FieldInfo fieldInfo, PointsReader reader)Write all values contained in the provided reader-
Methods inherited from class org.apache.lucene.codecs.PointsWriter
mergeOneField
-
-
-
-
Field Detail
-
dataOut
protected final IndexOutput dataOut
Output used to write the BKD tree data file
-
-
Constructor Detail
-
Lucene60PointsWriter
public Lucene60PointsWriter(SegmentWriteState writeState, int maxPointsInLeafNode, double maxMBSortInHeap) throws IOException
Full constructor- Throws:
IOException
-
Lucene60PointsWriter
public Lucene60PointsWriter(SegmentWriteState writeState) throws IOException
Uses the defaults values formaxPointsInLeafNode(1024) andmaxMBSortInHeap(16.0)- Throws:
IOException
-
-
Method Detail
-
writeField
public void writeField(FieldInfo fieldInfo, PointsReader reader) throws IOException
Description copied from class:PointsWriterWrite all values contained in the provided reader- Specified by:
writeFieldin classPointsWriter- Throws:
IOException
-
merge
public void merge(MergeState mergeState) throws IOException
Description copied from class:PointsWriterDefault merge implementation to merge incoming points readers by visiting all their points and adding to this writer- Overrides:
mergein classPointsWriter- Throws:
IOException
-
finish
public void finish() throws IOExceptionDescription copied from class:PointsWriterCalled once at the end before close- Specified by:
finishin classPointsWriter- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
-