Uses of Class
org.apache.lucene.index.PointValues
-
Packages that use PointValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene60 Components from the Lucene 6.0 index format.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util Some utility classes.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of PointValues in org.apache.lucene.codecs
Subclasses of PointValues in org.apache.lucene.codecs Modifier and Type Class Description classMutablePointValuesPointValueswhose order of points can be changed.Methods in org.apache.lucene.codecs that return PointValues Modifier and Type Method Description abstract PointValuesPointsReader. getValues(String field)ReturnPointValuesfor the givenfield. -
Uses of PointValues in org.apache.lucene.codecs.lucene60
Methods in org.apache.lucene.codecs.lucene60 that return PointValues Modifier and Type Method Description PointValuesLucene60PointsReader. getValues(String fieldName)Returns the underlyingBKDReader. -
Uses of PointValues in org.apache.lucene.index
Methods in org.apache.lucene.index that return PointValues Modifier and Type Method Description PointValuesCodecReader. getPointValues(String field)PointValuesExitableDirectoryReader.ExitableFilterAtomicReader. getPointValues(String field)PointValuesFilterLeafReader. getPointValues(String field)abstract PointValuesLeafReader. getPointValues(String field)Returns thePointValuesused for numeric or spatial searches for the given field, or null if there are no point fields.PointValuesParallelLeafReader. getPointValues(String fieldName)Constructors in org.apache.lucene.index with parameters of type PointValues Constructor Description VerifyPointsVisitor(String fieldName, int maxDoc, PointValues values)Sole constructor -
Uses of PointValues in org.apache.lucene.util
Constructors in org.apache.lucene.util with parameters of type PointValues Constructor Description DocIdSetBuilder(int maxDoc, PointValues values, String field)Create aDocIdSetBuilderinstance that is optimized for accumulating docs that match the givenPointValues. -
Uses of PointValues in org.apache.lucene.util.bkd
Subclasses of PointValues in org.apache.lucene.util.bkd Modifier and Type Class Description classBKDReaderHandles intersection of an multi-dimensional shape in byte[] space with a block KD-tree previously written withBKDWriter.
-