Package | Description |
---|---|
org.apache.lucene.codecs.lucene60 |
Lucene 6.0 file 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 |
Code to search indices.
|
org.apache.lucene.search.join |
Support for index-time and query-time joins.
|
org.apache.lucene.util.bkd |
Block KD-tree, implementing the generic spatial data structure described in
this paper.
|
Modifier and Type | Method and Description |
---|---|
void |
Lucene60PointsReader.intersect(java.lang.String fieldName,
PointValues.IntersectVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
private static class |
NearestNeighbor.NearestVisitor |
Modifier and Type | Method and Description |
---|---|
abstract void |
PointValues.intersect(java.lang.String fieldName,
PointValues.IntersectVisitor visitor)
Finds all documents and points matching the provided visitor.
|
void |
SortingLeafReader.SortingPointValues.intersect(java.lang.String fieldName,
PointValues.IntersectVisitor visitor) |
Modifier and Type | Method and Description |
---|---|
void |
MemoryIndex.MemoryIndexReader.MemoryIndexPointValues.intersect(java.lang.String fieldName,
PointValues.IntersectVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
private class |
PointInSetQuery.MergePointVisitor
Essentially does a merge sort, only collecting hits when the indexed point and query point are the same.
|
private class |
PointInSetQuery.SinglePointVisitor
IntersectVisitor that queries against a highly degenerate shape: a single point.
|
Modifier and Type | Class and Description |
---|---|
private class |
PointInSetIncludingScoreQuery.MergePointVisitor |
Modifier and Type | Class and Description |
---|---|
private static class |
BKDReader.VerifyVisitor |
Modifier and Type | Field and Description |
---|---|
(package private) PointValues.IntersectVisitor |
BKDReader.IntersectState.visitor |
Modifier and Type | Method and Description |
---|---|
BKDReader.IntersectState |
BKDReader.getIntersectState(PointValues.IntersectVisitor visitor)
Create a new
BKDReader.IntersectState |
void |
BKDReader.intersect(PointValues.IntersectVisitor visitor) |
protected void |
BKDReader.visitDocIDs(IndexInput in,
long blockFP,
PointValues.IntersectVisitor visitor) |
protected void |
BKDReader.visitDocValues(int[] commonPrefixLengths,
byte[] scratchPackedValue,
IndexInput in,
int[] docIDs,
int count,
PointValues.IntersectVisitor visitor) |
Constructor and Description |
---|
IntersectState(IndexInput in,
int numDims,
int packedBytesLength,
int maxPointsInLeafNode,
PointValues.IntersectVisitor visitor) |