Uses of Interface
org.apache.lucene.index.PointValues.IntersectVisitor
-
Packages that use PointValues.IntersectVisitor Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of PointValues.IntersectVisitor in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type PointValues.IntersectVisitor Modifier and Type Method Description voidMutablePointTree. visitDocIDs(PointValues.IntersectVisitor visitor) -
Uses of PointValues.IntersectVisitor in org.apache.lucene.index
Classes in org.apache.lucene.index that implement PointValues.IntersectVisitor Modifier and Type Class Description static classCheckIndex.VerifyPointsVisitorWalks the entire N-dimensional points space, verifying that all points fall within the last cell's boundaries.Methods in org.apache.lucene.index with parameters of type PointValues.IntersectVisitor Modifier and Type Method Description longPointValues. estimateDocCount(PointValues.IntersectVisitor visitor)Estimate the number of documents that would be matched byPointValues.intersect(org.apache.lucene.index.PointValues.IntersectVisitor)with the givenPointValues.IntersectVisitor.longPointValues. estimatePointCount(PointValues.IntersectVisitor visitor)Estimate the number of points that would be visited byPointValues.intersect(org.apache.lucene.index.PointValues.IntersectVisitor)with the givenPointValues.IntersectVisitor.voidPointValues. intersect(PointValues.IntersectVisitor visitor)Finds all documents and points matching the provided visitor.voidPointValues.PointTree. visitDocIDs(PointValues.IntersectVisitor visitor)Visit all the docs below the current node.voidPointValues.PointTree. visitDocValues(PointValues.IntersectVisitor visitor)Visit all the docs and values below the current node.
-