See: Description
| Interface | Description |
|---|---|
| ColumnNameExtractor |
Contract for extracting column names for a given
sheet. |
| RowSet |
Used by the
org.springframework.batch.item.excel.AbstractExcelItemReader to abstract away
the complexities of the underlying Excel API implementations. |
| RowSetFactory |
Contract for factories which will construct a
RowSet implementation. |
| RowSetMetaData |
Interface representing the the metadata associated with an Excel document.
|
| Class | Description |
|---|---|
| DefaultRowSet |
Default implementation of the
RowSet interface. |
| DefaultRowSetFactory |
RowSetFactory implementation which constructs a DefaultRowSet instance
and DefaultRowSetMetaData instance. |
| DefaultRowSetMetaData |
Default implementation for the
RowSetMetaData interface. |
| RowNumberColumnNameExtractor |
ColumnNameExtractor which returns the values of a given row (default is 0) as the column
names. |
| StaticColumnNameExtractor |
ColumnNameExtractor implementation which returns a preset String[] to use as
the column names. |