Uses of Class
org.apache.lucene.index.StoredFieldVisitor
Packages that use StoredFieldVisitor
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Lucene 9.0 compressing format.
The logical representation of a
Document for indexing and
searching.Code to maintain and access indices.
Code to search indices.
-
Uses of StoredFieldVisitor in org.apache.lucene.codecs
Subclasses of StoredFieldVisitor in org.apache.lucene.codecsModifier and TypeClassDescriptionprotected classA visitor that adds every field it sees.Methods in org.apache.lucene.codecs with parameters of type StoredFieldVisitorModifier and TypeMethodDescriptionabstract voidStoredFieldsReader.visitDocument(int docID, StoredFieldVisitor visitor) Visit the stored fields for documentdocID -
Uses of StoredFieldVisitor in org.apache.lucene.codecs.lucene90.compressing
Methods in org.apache.lucene.codecs.lucene90.compressing with parameters of type StoredFieldVisitorModifier and TypeMethodDescriptionvoidLucene90CompressingStoredFieldsReader.visitDocument(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.document
Subclasses of StoredFieldVisitor in org.apache.lucene.documentModifier and TypeClassDescriptionclassAStoredFieldVisitorthat creates aDocumentfrom stored fields. -
Uses of StoredFieldVisitor in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type StoredFieldVisitorModifier and TypeMethodDescriptionfinal voidBaseCompositeReader.document(int docID, StoredFieldVisitor visitor) final voidCodecReader.document(int docID, StoredFieldVisitor visitor) voidFilterLeafReader.document(int docID, StoredFieldVisitor visitor) abstract voidIndexReader.document(int docID, StoredFieldVisitor visitor) Expert: visits the fields of a stored document, for custom processing/loading of each field.voidParallelLeafReader.document(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.search
Methods in org.apache.lucene.search with parameters of type StoredFieldVisitorModifier and TypeMethodDescriptionvoidIndexSearcher.doc(int docID, StoredFieldVisitor fieldVisitor) Sugar for.getIndexReader().document(docID, fieldVisitor)