add missing javadocs

This commit is contained in:
Mike McCandless 2016-03-25 19:47:14 -04:00
parent 6b7030d637
commit 1e9fb843a9
1 changed files with 5 additions and 1 deletions

View File

@ -42,8 +42,12 @@ 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;