Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.compressing |
StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.
|
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.search |
Code to search indices.
|
Modifier and Type | Class and Description |
---|---|
protected class |
StoredFieldsWriter.MergeVisitor
A visitor that adds every field it sees.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
StoredFieldsReader.visitDocument(int docID,
StoredFieldVisitor visitor)
Visit the stored fields for document
docID |
Modifier and Type | Method and Description |
---|---|
void |
CompressingStoredFieldsReader.visitDocument(int docID,
StoredFieldVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
class |
DocumentStoredFieldVisitor
A
StoredFieldVisitor that creates a Document from stored fields. |
Modifier and Type | Method and Description |
---|---|
void |
ParallelLeafReader.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 |
FilterLeafReader.document(int docID,
StoredFieldVisitor visitor) |
void |
CodecReader.document(int docID,
StoredFieldVisitor visitor) |
void |
BaseCompositeReader.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-2017 Apache Software Foundation. All Rights Reserved.