Uses of Class
org.apache.lucene.index.StoredFieldVisitor
-
Packages that use StoredFieldVisitor 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.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocumentfor 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.highlight Highlighting search terms.org.apache.lucene.search.uhighlight The UnifiedHighlighter -- a flexible highlighter that can get offsets from postings, term vectors, or analysis. -
-
Uses of StoredFieldVisitor in org.apache.lucene.codecs
Subclasses of StoredFieldVisitor in org.apache.lucene.codecs Modifier and Type Class Description protected classStoredFieldsWriter.MergeVisitorA visitor that adds every field it sees.Methods in org.apache.lucene.codecs with parameters of type StoredFieldVisitor Modifier and Type Method Description abstract voidStoredFieldsReader. visitDocument(int docID, StoredFieldVisitor visitor)Visit the stored fields for documentdocID -
Uses of StoredFieldVisitor in org.apache.lucene.codecs.compressing
Methods in org.apache.lucene.codecs.compressing with parameters of type StoredFieldVisitor Modifier and Type Method Description private static voidCompressingStoredFieldsReader. readField(DataInput in, StoredFieldVisitor visitor, FieldInfo info, int bits)voidCompressingStoredFieldsReader. visitDocument(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext with parameters of type StoredFieldVisitor Modifier and Type Method Description private voidSimpleTextStoredFieldsReader. readField(BytesRef type, FieldInfo fieldInfo, StoredFieldVisitor visitor)voidSimpleTextStoredFieldsReader. visitDocument(int n, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.document
Subclasses of StoredFieldVisitor in org.apache.lucene.document Modifier and Type Class Description classDocumentStoredFieldVisitorAStoredFieldVisitorthat creates aDocumentfrom stored fields. -
Uses of StoredFieldVisitor in org.apache.lucene.index
Subclasses of StoredFieldVisitor in org.apache.lucene.index Modifier and Type Class Description private static classSortingStoredFieldsConsumer.CopyVisitorA visitor that copies every field it sees in the providedStoredFieldsWriter.Methods in org.apache.lucene.index with parameters of type StoredFieldVisitor Modifier and Type Method Description voidBaseCompositeReader. document(int docID, StoredFieldVisitor visitor)voidCodecReader. document(int docID, StoredFieldVisitor visitor)voidDocValuesLeafReader. 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.voidMergeReaderWrapper. document(int docID, StoredFieldVisitor visitor)voidParallelLeafReader. document(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory with parameters of type StoredFieldVisitor Modifier and Type Method Description voidMemoryIndex.MemoryIndexReader. document(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.search
Methods in org.apache.lucene.search with parameters of type StoredFieldVisitor Modifier and Type Method Description voidIndexSearcher. doc(int docID, StoredFieldVisitor fieldVisitor)Sugar for.getIndexReader().document(docID, fieldVisitor) -
Uses of StoredFieldVisitor in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight with parameters of type StoredFieldVisitor Modifier and Type Method Description voidTermVectorLeafReader. document(int docID, StoredFieldVisitor visitor) -
Uses of StoredFieldVisitor in org.apache.lucene.search.uhighlight
Subclasses of StoredFieldVisitor in org.apache.lucene.search.uhighlight Modifier and Type Class Description protected static classUnifiedHighlighter.LimitedStoredFieldVisitorFetches stored fields for highlighting.
-