Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.codecs.compressing |
Support for testing
CompressingStoredFieldsFormat . |
org.apache.lucene.codecs.lucene40 |
Support for testing
Lucene40PostingsFormat . |
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
org.apache.lucene.document |
Misc extensions of the Document/Field API.
|
org.apache.lucene.index |
Misc index tools and index support.
|
org.apache.lucene.index.sorter |
Provides index sorting capablities.
|
org.apache.lucene.search |
This package contains a single proximity query, TermAutomatonQuery.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
StoredFieldsReader.visitDocument(int n,
StoredFieldVisitor visitor)
Visit the stored fields for document
n |
Modifier and Type | Method and Description |
---|---|
void |
CompressingStoredFieldsReader.visitDocument(int docID,
StoredFieldVisitor visitor) |
Modifier and Type | Method and Description |
---|---|
void |
Lucene40StoredFieldsReader.visitDocument(int n,
StoredFieldVisitor visitor) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleTextStoredFieldsReader.visitDocument(int n,
StoredFieldVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
class |
DocumentStoredFieldVisitor
A
StoredFieldVisitor that creates a Document containing all stored fields, or only specific
requested fields provided to DocumentStoredFieldVisitor(Set) . |
Modifier and Type | Method and Description |
---|---|
void |
FieldFilterAtomicReader.document(int docID,
StoredFieldVisitor visitor) |
abstract void |
IndexReader.document(int docID,
StoredFieldVisitor visitor)
Expert: visits the fields of a stored document, for
custom processing/loading of each field.
|
void |
BaseCompositeReader.document(int docID,
StoredFieldVisitor visitor) |
void |
SegmentReader.document(int docID,
StoredFieldVisitor visitor) |
void |
FilterAtomicReader.document(int docID,
StoredFieldVisitor visitor) |
void |
SlowCompositeReaderWrapper.document(int docID,
StoredFieldVisitor visitor) |
void |
ParallelAtomicReader.document(int docID,
StoredFieldVisitor visitor) |
Modifier and Type | Method and Description |
---|---|
void |
SortingAtomicReader.document(int docID,
StoredFieldVisitor visitor) |
Modifier and Type | Method and Description |
---|---|
void |
IndexSearcher.doc(int docID,
StoredFieldVisitor fieldVisitor)
Sugar for
.getIndexReader().document(docID, fieldVisitor) |
Copyright © 2000–2024 The Apache Software Foundation. All rights reserved.