mirror of https://github.com/apache/lucene.git
add missing javadocs
This commit is contained in:
parent
6b7030d637
commit
1e9fb843a9
|
@ -41,9 +41,13 @@ import org.apache.lucene.util.bkd.BKDWriter;
|
||||||
|
|
||||||
/** Writes dimensional values */
|
/** Writes dimensional values */
|
||||||
public class Lucene60PointsWriter extends PointsWriter implements Closeable {
|
public class Lucene60PointsWriter extends PointsWriter implements Closeable {
|
||||||
|
|
||||||
|
/** Output used to write the BKD tree data file */
|
||||||
protected final IndexOutput dataOut;
|
protected final IndexOutput dataOut;
|
||||||
|
|
||||||
|
/** Maps field name to file pointer in the data file where the BKD index is located. */
|
||||||
protected final Map<String,Long> indexFPs = new HashMap<>();
|
protected final Map<String,Long> indexFPs = new HashMap<>();
|
||||||
|
|
||||||
final SegmentWriteState writeState;
|
final SegmentWriteState writeState;
|
||||||
final int maxPointsInLeafNode;
|
final int maxPointsInLeafNode;
|
||||||
final double maxMBSortInHeap;
|
final double maxMBSortInHeap;
|
||||||
|
|
Loading…
Reference in New Issue