- ExcelBean - Annotation Type in com.gizbel.excel.annotations
-
Class once annotated with this, can be used to perform excel column data
binding to the instance variables of the annotated class.
This annotation is required to be present on the class.
Must have zero argument constructor
- ExcelColumnHeader - Annotation Type in com.gizbel.excel.annotations
-
This annotation is used to fetch the value from the Excel cell to a
particular java class field based on the column header.
- ExcelColumnIndex - Annotation Type in com.gizbel.excel.annotations
-
This annotation is used to fetch the value from the Excel cell to a
particular java class field based on column index.
- ExcelFactoryType - Enum in com.gizbel.excel.enums
-
Defines the excel factory type.
Based on this ExcelFactory, you can choose whether you want to extract cell
values based on (columns names) or (column index).
- ExcelParser - Class in com.gizbel.excel.factory
-
Builds the excel factory on the specified class, The specified class must
have annotation type ExcelBean.
Processes only first sheet at one time.
Dependencies are latest version of apache POI
- ExcelParser(Class, ExcelFactoryType, File) - Constructor for class com.gizbel.excel.factory.ExcelParser
-
Initialize the excel parser.
This constructor will also save the annotated class fields in to a map
for future use.