Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.lucene86 |
Lucene 8.6 file format.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search.comparators |
Comparators, used to compare hits so as to determine their
sort order when collecting the top results with
TopFieldCollector . |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
MutablePointValues
PointValues whose order of points can be changed. |
Modifier and Type | Method and Description |
---|---|
abstract PointValues |
PointsReader.getValues(String field)
Return
PointValues for the given field . |
Modifier and Type | Method and Description |
---|---|
PointValues |
Lucene86PointsReader.getValues(String fieldName)
Returns the underlying
BKDReader . |
Modifier and Type | Method and Description |
---|---|
PointValues |
ParallelLeafReader.getPointValues(String fieldName) |
PointValues |
CodecReader.getPointValues(String field) |
PointValues |
ExitableDirectoryReader.ExitableFilterAtomicReader.getPointValues(String field) |
abstract PointValues |
LeafReader.getPointValues(String field)
Returns the
PointValues used for numeric or
spatial searches for the given field, or null if there
are no point fields. |
PointValues |
FilterLeafReader.getPointValues(String field) |
Constructor and Description |
---|
VerifyPointsVisitor(String fieldName,
int maxDoc,
PointValues values)
Sole constructor
|
Modifier and Type | Method and Description |
---|---|
protected PointValues |
NumericComparator.NumericLeafComparator.getPointValues(LeafReaderContext context,
String field)
Retrieves point values for the field in this segment
|
Constructor and Description |
---|
DocIdSetBuilder(int maxDoc,
PointValues values,
String field)
Create a
DocIdSetBuilder instance that is optimized for
accumulating docs that match the given PointValues . |
Modifier and Type | Class and Description |
---|---|
class |
BKDReader
Handles intersection of an multi-dimensional shape in byte[] space with a block KD-tree previously written with
BKDWriter . |
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.