StoredFieldVisitor
Expert: provides a low-level means of accessing the stored field values in an index. See .
NOTE: a StoredFieldVisitor implementation should not try to load or visit other stored documents in the same reader because the implementation of stored fields for most codecs is not reentrant and you will see strange exceptions as a result.
See DocumentStoredFieldVisitor, which is a StoredFieldVisitor that builds the Document containing all stored fields. This is used by .
Inheritors
Functions
Process a binary field.
Expert: Process a binary field directly from the StoredFieldDataInput. Implementors of this method must read StoredFieldDataInput#length bytes from the given [ ]. The default implementation reads all bytes in a newly created byte array and calls .binaryField.
Process a double numeric field.
Process a float numeric field.
Hook before processing a field. Before a field is processed, this method is invoked so that subclasses can return a Status representing whether they need that particular field or not, or to stop processing entirely.
Process a string field.