Package | Description |
---|---|
org.apache.poi.hssf.eventusermodel |
HSSF eventmodel Package provides an event-based API for reading HSSF files.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AbortableHSSFListener |
Abstract class for use with the HSSFRequest and HSSFEventFactory, which
allows for the halting of processing.
|
static class |
EventWorkbookBuilder.SheetRecordCollectingListener |
A wrapping HSSFListener which will collect
BoundSheetRecord s and ExternSheetRecord s as
they go past, so you can create a Stub InternalWorkbook from
them once required. |
class |
FormatTrackingHSSFListener |
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.
|
class |
MissingRecordAwareHSSFListener |
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.
|
Modifier and Type | Method | Description |
---|---|---|
void |
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.
|
Constructor | Description |
---|---|
FormatTrackingHSSFListener(HSSFListener childListener) |
Creates a format tracking wrapper around the given listener, using
the
default locale for the formats. |
FormatTrackingHSSFListener(HSSFListener childListener,
java.util.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) |
Copyright 2018 The Apache Software Foundation or its licensors, as applicable.