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.index |
Code to maintain and access indices.
|
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 |
Lucene60PointsReader.getValues(String fieldName)
Returns the underlying
BKDReader . |
Modifier and Type | Method and Description |
---|---|
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 |
ParallelLeafReader.getPointValues(String fieldName) |
PointValues |
FilterLeafReader.getPointValues(String field) |
PointValues |
CodecReader.getPointValues(String field) |
Constructor and Description |
---|
VerifyPointsVisitor(String fieldName,
int maxDoc,
PointValues values)
Sole constructor
|
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-2018 Apache Software Foundation. All Rights Reserved.