Uses of Class
org.apache.lucene.index.PointValues
-
Packages that use PointValues Package Description org.apache.lucene.codecs org.apache.lucene.codecs.lucene60 org.apache.lucene.index org.apache.lucene.search.highlight org.apache.lucene.util org.apache.lucene.util.bkd -
-
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)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.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.search.highlight
Methods in org.apache.lucene.search.highlight that return PointValues Modifier and Type Method Description PointValuesTermVectorLeafReader. getPointValues(String fieldName) -
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.
-