Uses of Class
org.apache.lucene.codecs.MutablePointValues
-
Packages that use MutablePointValues Package Description org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of MutablePointValues in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext with parameters of type MutablePointValues Modifier and Type Method Description private void
SimpleTextBKDWriter. build(int nodeID, int leafNodeOffset, MutablePointValues reader, int from, int to, IndexOutput out, byte[] minPackedValue, byte[] maxPackedValue, byte[] splitPackedValues, long[] leafBlockFPs, int[] spareDocIds)
long
SimpleTextBKDWriter. writeField(IndexOutput out, java.lang.String fieldName, MutablePointValues reader)
Write a field from aMutablePointValues
.private long
SimpleTextBKDWriter. writeField1Dim(IndexOutput out, java.lang.String fieldName, MutablePointValues reader)
private long
SimpleTextBKDWriter. writeFieldNDims(IndexOutput out, java.lang.String fieldName, MutablePointValues values)
-
Uses of MutablePointValues in org.apache.lucene.index
Subclasses of MutablePointValues in org.apache.lucene.index Modifier and Type Class Description (package private) static class
PointValuesWriter.MutableSortingPointValues
Fields in org.apache.lucene.index declared as MutablePointValues Modifier and Type Field Description private MutablePointValues
PointValuesWriter.MutableSortingPointValues. in
Constructors in org.apache.lucene.index with parameters of type MutablePointValues Constructor Description MutableSortingPointValues(MutablePointValues in, Sorter.DocMap docMap)
-
Uses of MutablePointValues in org.apache.lucene.util.bkd
Methods in org.apache.lucene.util.bkd with parameters of type MutablePointValues Modifier and Type Method Description private void
BKDWriter. build(int nodeID, int leafNodeOffset, MutablePointValues reader, int from, int to, IndexOutput out, byte[] minPackedValue, byte[] maxPackedValue, int[] parentSplits, byte[] splitPackedValues, long[] leafBlockFPs, int[] spareDocIds)
private void
BKDWriter. computePackedValueBounds(MutablePointValues values, int from, int to, byte[] minPackedValue, byte[] maxPackedValue, BytesRef scratch)
static void
MutablePointsReaderUtils. partition(int numDataDim, int numIndexDim, int maxDoc, int splitDim, int bytesPerDim, int commonPrefixLen, MutablePointValues reader, int from, int to, int mid, BytesRef scratch1, BytesRef scratch2)
Partition points aroundmid
.static void
MutablePointsReaderUtils. sort(int maxDoc, int packedBytesLength, MutablePointValues reader, int from, int to)
Sort the givenMutablePointValues
based on its packed value then doc ID.static void
MutablePointsReaderUtils. sortByDim(int numDataDim, int numIndexDim, int sortedDim, int bytesPerDim, int[] commonPrefixLengths, MutablePointValues reader, int from, int to, BytesRef scratch1, BytesRef scratch2)
Sort points on the given dimension.long
BKDWriter. writeField(IndexOutput out, java.lang.String fieldName, MutablePointValues reader)
Write a field from aMutablePointValues
.private long
BKDWriter. writeField1Dim(IndexOutput out, java.lang.String fieldName, MutablePointValues reader)
private long
BKDWriter. writeFieldNDims(IndexOutput out, java.lang.String fieldName, MutablePointValues values)
-