Uses of Interface
org.apache.poi.hssf.eventusermodel.HSSFListener
Packages that use HSSFListener
Package
Description
HSSF eventmodel Package provides an event-based API for reading HSSF files.
-
Uses of HSSFListener in org.apache.poi.hssf.eventusermodel
Classes in org.apache.poi.hssf.eventusermodel that implement HSSFListenerModifier and TypeClassDescriptionclass
Abstract class for use with the HSSFRequest and HSSFEventFactory, which allows for the halting of processing.static class
A wrapping HSSFListener which will collectBoundSheetRecord
s andExternSheetRecord
s as they go past, so you can create a StubInternalWorkbook
from them once required.class
A proxy HSSFListener that keeps track of the document formatting records, and provides an easy way to look up the format strings used by cells from their ids.final class
A HSSFListener which tracks rows and columns, and will trigger your HSSFListener for all rows and cells, even the ones that aren't actually stored in the file.Methods in org.apache.poi.hssf.eventusermodel with parameters of type HSSFListenerModifier and TypeMethodDescriptionvoid
HSSFRequest.addListener
(HSSFListener lsnr, short sid) add an event listener for a particular record type.void
HSSFRequest.addListenerForAllRecords
(HSSFListener lsnr) This is the equivalent of calling addListener(myListener, sid) for EVERY record in the org.apache.poi.hssf.record package.Constructors in org.apache.poi.hssf.eventusermodel with parameters of type HSSFListenerModifierConstructorDescriptionFormatTrackingHSSFListener
(HSSFListener childListener) Creates a format tracking wrapper around the given listener, using thedefault locale
for the formats.FormatTrackingHSSFListener
(HSSFListener childListener, Locale locale) Creates a format tracking wrapper around the given listener, using the given locale for the formats.MissingRecordAwareHSSFListener
(HSSFListener listener) Constructs a new MissingRecordAwareHSSFListener, which will fire processRecord on the supplied child HSSFListener for all Records, and missing records.SheetRecordCollectingListener
(HSSFListener childListener)