Uses of Class
org.apache.lucene.codecs.MutablePointTree
-
Packages that use MutablePointTree 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 MutablePointTree in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext with parameters of type MutablePointTree Modifier and Type Method Description private voidSimpleTextBKDWriter. build(int nodeID, int leafNodeOffset, MutablePointTree reader, int from, int to, IndexOutput out, byte[] minPackedValue, byte[] maxPackedValue, byte[] splitPackedValues, long[] leafBlockFPs, int[] spareDocIds)longSimpleTextBKDWriter. writeField(IndexOutput out, java.lang.String fieldName, MutablePointTree reader)Write a field from aMutablePointTree.private longSimpleTextBKDWriter. writeField1Dim(IndexOutput out, java.lang.String fieldName, MutablePointTree reader)private longSimpleTextBKDWriter. writeFieldNDims(IndexOutput out, java.lang.String fieldName, MutablePointTree values) -
Uses of MutablePointTree in org.apache.lucene.index
Subclasses of MutablePointTree in org.apache.lucene.index Modifier and Type Class Description (package private) static classPointValuesWriter.MutableSortingPointValuesFields in org.apache.lucene.index declared as MutablePointTree Modifier and Type Field Description private MutablePointTreePointValuesWriter.MutableSortingPointValues. inConstructors in org.apache.lucene.index with parameters of type MutablePointTree Constructor Description MutableSortingPointValues(MutablePointTree in, Sorter.DocMap docMap) -
Uses of MutablePointTree in org.apache.lucene.util.bkd
Methods in org.apache.lucene.util.bkd with parameters of type MutablePointTree Modifier and Type Method Description private voidBKDWriter. build(int leavesOffset, int numLeaves, MutablePointTree reader, int from, int to, IndexOutput out, byte[] minPackedValue, byte[] maxPackedValue, int[] parentSplits, byte[] splitPackedValues, byte[] splitDimensionValues, long[] leafBlockFPs, int[] spareDocIds)private voidBKDWriter. computePackedValueBounds(MutablePointTree values, int from, int to, byte[] minPackedValue, byte[] maxPackedValue, BytesRef scratch)static voidMutablePointTreeReaderUtils. partition(BKDConfig config, int maxDoc, int splitDim, int commonPrefixLen, MutablePointTree reader, int from, int to, int mid, BytesRef scratch1, BytesRef scratch2)Partition points aroundmid.static voidMutablePointTreeReaderUtils. sort(BKDConfig config, int maxDoc, MutablePointTree reader, int from, int to)Sort the givenMutablePointTreebased on its packed value then doc ID.static voidMutablePointTreeReaderUtils. sortByDim(BKDConfig config, int sortedDim, int[] commonPrefixLengths, MutablePointTree reader, int from, int to, BytesRef scratch1, BytesRef scratch2)Sort points on the given dimension.java.lang.RunnableBKDWriter. writeField(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut, java.lang.String fieldName, MutablePointTree reader)Write a field from aMutablePointTree.private java.lang.RunnableBKDWriter. writeField1Dim(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut, java.lang.String fieldName, MutablePointTree reader)private java.lang.RunnableBKDWriter. writeFieldNDims(IndexOutput metaOut, IndexOutput indexOut, IndexOutput dataOut, java.lang.String fieldName, MutablePointTree values)
-