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.lucene86 Lucene 8.6 file format.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocumentfor 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.comparators Comparators, used to compare hits so as to determine their sort order when collecting the top results withTopFieldCollector.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 classMutablePointValuesPointValueswhose order of points can be changed.Methods in org.apache.lucene.codecs that return PointValues Modifier and Type Method Description abstract PointValuesPointsReader. getValues(java.lang.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(java.lang.String fieldName)Returns the underlyingBKDReader. -
Uses of PointValues in org.apache.lucene.codecs.lucene86
Methods in org.apache.lucene.codecs.lucene86 that return PointValues Modifier and Type Method Description PointValuesLucene86PointsReader. 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) classSimpleTextBKDReaderForked fromBKDReaderand simplified/specialized for SimpleText's usageMethods in org.apache.lucene.codecs.simpletext that return PointValues Modifier and Type Method Description PointValuesSimpleTextPointsReader. 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 PointValuesLatLonPointDistanceFeatureQuery.DistanceScorer. pointValuesprivate PointValuesLongDistanceFeatureQuery.DistanceScorer. pointValuesprivate PointValuesSpatialQuery.RelationScorerSupplier. valuesMethods in org.apache.lucene.document with parameters of type PointValues Modifier and Type Method Description private static booleanSpatialQuery. hasAnyHits(SpatialQuery.SpatialVisitor spatialVisitor, ShapeField.QueryRelation queryRelation, 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, SpatialQuery.SpatialVisitor spatialVisitor, ShapeField.QueryRelation queryRelation, java.lang.String field) -
Uses of PointValues in org.apache.lucene.index
Subclasses of PointValues in org.apache.lucene.index Modifier and Type Class Description private static classExitableDirectoryReader.ExitablePointValuesWrapper class for another PointValues implementation that is used by ExitableFields.(package private) static classPointValuesWriter.MutableSortingPointValuesprivate static classSortingCodecReader.SortingPointValuesFields in org.apache.lucene.index declared as PointValues Modifier and Type Field Description private PointValuesExitableDirectoryReader.ExitablePointValues. inprivate PointValuesSortingCodecReader.SortingPointValues. inMethods in org.apache.lucene.index that return PointValues Modifier and Type Method Description PointValuesCodecReader. getPointValues(java.lang.String field)PointValuesDocValuesLeafReader. getPointValues(java.lang.String field)PointValuesExitableDirectoryReader.ExitableFilterAtomicReader. getPointValues(java.lang.String field)PointValuesFilterLeafReader. getPointValues(java.lang.String field)abstract PointValuesLeafReader. getPointValues(java.lang.String field)Returns thePointValuesused for numeric or spatial searches for the given field, or null if there are no point fields.PointValuesMergeReaderWrapper. getPointValues(java.lang.String fieldName)PointValuesParallelLeafReader. 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 classMemoryIndex.MemoryIndexReader.MemoryIndexPointValuesMethods in org.apache.lucene.index.memory that return PointValues Modifier and Type Method Description PointValuesMemoryIndex.MemoryIndexReader. getPointValues(java.lang.String fieldName) -
Uses of PointValues in org.apache.lucene.search.comparators
Fields in org.apache.lucene.search.comparators declared as PointValues Modifier and Type Field Description private PointValuesNumericComparator.NumericLeafComparator. pointValues -
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(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 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.
-