Uses of Class
org.apache.lucene.util.bkd.BKDReader.IndexTree
-
Packages that use BKDReader.IndexTree Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.search Code to search indices.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of BKDReader.IndexTree in org.apache.lucene.document
Fields in org.apache.lucene.document declared as BKDReader.IndexTree Modifier and Type Field Description (package private) BKDReader.IndexTree
FloatPointNearestNeighbor.Cell. index
Constructors in org.apache.lucene.document with parameters of type BKDReader.IndexTree Constructor Description Cell(BKDReader.IndexTree index, int readerIndex, byte[] minPacked, byte[] maxPacked, double distanceSquared)
-
Uses of BKDReader.IndexTree in org.apache.lucene.search
Fields in org.apache.lucene.search declared as BKDReader.IndexTree Modifier and Type Field Description (package private) BKDReader.IndexTree
NearestNeighbor.Cell. index
Constructors in org.apache.lucene.search with parameters of type BKDReader.IndexTree Constructor Description Cell(BKDReader.IndexTree index, int readerIndex, byte[] minPacked, byte[] maxPacked, double distanceSortKey)
-
Uses of BKDReader.IndexTree in org.apache.lucene.util.bkd
Fields in org.apache.lucene.util.bkd declared as BKDReader.IndexTree Modifier and Type Field Description BKDReader.IndexTree
BKDReader.IntersectState. index
Methods in org.apache.lucene.util.bkd that return BKDReader.IndexTree Modifier and Type Method Description BKDReader.IndexTree
BKDReader.IndexTree. clone()
Clone, but you are not allowed to pop up past the point where the clone happened.Methods in org.apache.lucene.util.bkd with parameters of type BKDReader.IndexTree Modifier and Type Method Description void
BKDReader. visitLeafBlockValues(BKDReader.IndexTree index, BKDReader.IntersectState state)
Visits all docIDs and packed values in a single leaf blockConstructors in org.apache.lucene.util.bkd with parameters of type BKDReader.IndexTree Constructor Description IntersectState(IndexInput in, int numDims, int packedBytesLength, int packedIndexBytesLength, int maxPointsInLeafNode, PointValues.IntersectVisitor visitor, BKDReader.IndexTree indexVisitor)
-