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.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.search.highlight Highlighting search terms.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 class
MutablePointValues
PointValues
whose order of points can be changed.Methods in org.apache.lucene.codecs that return PointValues Modifier and Type Method Description abstract PointValues
PointsReader. getValues(java.lang.String field)
ReturnPointValues
for 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 PointValues
Lucene60PointsReader. getValues(java.lang.String fieldName)
Returns the underlyingBKDReader
. -
Uses of PointValues in org.apache.lucene.codecs.simpletext
Subclasses of PointValues in org.apache.lucene.codecs.simpletext Modifier and Type Class Description (package private) class
SimpleTextBKDReader
Forked fromBKDReader
and simplified/specialized for SimpleText's usageMethods in org.apache.lucene.codecs.simpletext that return PointValues Modifier and Type Method Description PointValues
SimpleTextPointsReader. getValues(java.lang.String fieldName)
-
Uses of PointValues in org.apache.lucene.document
Fields in org.apache.lucene.document declared as PointValues Modifier and Type Field Description private PointValues
LatLonPointDistanceFeatureQuery.DistanceScorer. pointValues
private PointValues
LongDistanceFeatureQuery.DistanceScorer. pointValues
private PointValues
ShapeQuery.RelationScorerSupplier. values
Methods in org.apache.lucene.document with parameters of type PointValues Modifier and Type Method Description private static boolean
ShapeQuery. hasAnyHits(ShapeQuery query, PointValues values)
Return true if the query matches at least one document.Constructors in org.apache.lucene.document with parameters of type PointValues Constructor Description DistanceScorer(Weight weight, int maxDoc, long leadCost, float boost, PointValues pointValues, NumericDocValues docValues)
DistanceScorer(Weight weight, int maxDoc, long leadCost, float boost, PointValues pointValues, NumericDocValues docValues)
RelationScorerSupplier(PointValues values, ShapeQuery query)
-
Uses of PointValues in org.apache.lucene.index
Subclasses of PointValues in org.apache.lucene.index Modifier and Type Class Description private static class
ExitableDirectoryReader.ExitablePointValues
Wrapper class for another PointValues implementation that is used by ExitableFields.(package private) static class
PointValuesWriter.MutableSortingPointValues
private static class
SortingLeafReader.SortingPointValues
Fields in org.apache.lucene.index declared as PointValues Modifier and Type Field Description private PointValues
ExitableDirectoryReader.ExitablePointValues. in
private PointValues
SortingLeafReader.SortingPointValues. in
Methods in org.apache.lucene.index that return PointValues Modifier and Type Method Description PointValues
CodecReader. getPointValues(java.lang.String field)
PointValues
ExitableDirectoryReader.ExitableFilterAtomicReader. getPointValues(java.lang.String field)
PointValues
FilterLeafReader. getPointValues(java.lang.String field)
abstract PointValues
LeafReader. getPointValues(java.lang.String field)
Returns thePointValues
used for numeric or spatial searches for the given field, or null if there are no point fields.PointValues
MergeReaderWrapper. getPointValues(java.lang.String fieldName)
PointValues
ParallelLeafReader. getPointValues(java.lang.String fieldName)
PointValues
SortingLeafReader. getPointValues(java.lang.String fieldName)
Constructors in org.apache.lucene.index with parameters of type PointValues Constructor Description ExitablePointValues(PointValues in, QueryTimeout queryTimeout)
SortingPointValues(PointValues in, Sorter.DocMap docMap)
VerifyPointsVisitor(java.lang.String fieldName, int maxDoc, PointValues values)
Sole constructor -
Uses of PointValues in org.apache.lucene.index.memory
Subclasses of PointValues in org.apache.lucene.index.memory Modifier and Type Class Description private class
MemoryIndex.MemoryIndexReader.MemoryIndexPointValues
Methods in org.apache.lucene.index.memory that return PointValues Modifier and Type Method Description PointValues
MemoryIndex.MemoryIndexReader. getPointValues(java.lang.String fieldName)
-
Uses of PointValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return PointValues Modifier and Type Method Description PointValues
TermVectorLeafReader. getPointValues(java.lang.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, java.lang.String field)
Create aDocIdSetBuilder
instance 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 class
BKDReader
Handles intersection of an multi-dimensional shape in byte[] space with a block KD-tree previously written withBKDWriter
.
-