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.document |
The logical representation of a
Document 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.
|
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(java.lang.String field)
Return
PointValues for the given field . |
Modifier and Type | Method and Description |
---|---|
PointValues |
Lucene60PointsReader.getValues(java.lang.String fieldName)
Returns the underlying
BKDReader . |
Modifier and Type | Field and Description |
---|---|
private PointValues |
LatLonPointDistanceFeatureQuery.DistanceScorer.pointValues |
private PointValues |
LongDistanceFeatureQuery.DistanceScorer.pointValues |
(package private) PointValues |
LatLonShapeQuery.RelationScorerSupplier.values |
Constructor and 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,
PointValues.IntersectVisitor visitor,
PointValues.IntersectVisitor disjointVisitor,
LatLonShape.QueryRelation queryRelation) |
Modifier and Type | Class and 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 |
Modifier and Type | Field and Description |
---|---|
private PointValues |
SortingLeafReader.SortingPointValues.in |
private PointValues |
ExitableDirectoryReader.ExitablePointValues.in |
Modifier and Type | Method and Description |
---|---|
abstract PointValues |
LeafReader.getPointValues(java.lang.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(java.lang.String field) |
PointValues |
SortingLeafReader.getPointValues(java.lang.String fieldName) |
PointValues |
MergeReaderWrapper.getPointValues(java.lang.String fieldName) |
PointValues |
CodecReader.getPointValues(java.lang.String field) |
PointValues |
ExitableDirectoryReader.ExitableFilterAtomicReader.getPointValues(java.lang.String field) |
PointValues |
ParallelLeafReader.getPointValues(java.lang.String fieldName) |
Constructor and Description |
---|
ExitablePointValues(PointValues in,
QueryTimeout queryTimeout) |
SortingPointValues(PointValues in,
Sorter.DocMap docMap) |
VerifyPointsVisitor(java.lang.String fieldName,
int maxDoc,
PointValues values)
Sole constructor
|
Modifier and Type | Class and Description |
---|---|
private class |
MemoryIndex.MemoryIndexReader.MemoryIndexPointValues |
Modifier and Type | Method and Description |
---|---|
PointValues |
MemoryIndex.MemoryIndexReader.getPointValues(java.lang.String fieldName) |
Modifier and Type | Method and Description |
---|---|
PointValues |
TermVectorLeafReader.getPointValues(java.lang.String fieldName) |
Constructor and Description |
---|
DocIdSetBuilder(int maxDoc,
PointValues values,
java.lang.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 . |