Package io.github.dornol.excelkit.excel
Class ExcelWorkbook.InitOptions
java.lang.Object
io.github.dornol.excelkit.excel.ExcelWorkbook.InitOptions
- Enclosing class:
ExcelWorkbook
Initialization options for
ExcelWorkbook. Passed to the configurer given to
ExcelWorkbook.create(Consumer).
Restricted to settings that cannot be changed after the underlying SXSSFWorkbook
is constructed (currently just rowAccessWindowSize).
- Since:
- 0.17.0
-
Method Summary
Modifier and TypeMethodDescriptionrowAccessWindowSize(int size) Sets the SXSSF row access window size.
-
Method Details
-
rowAccessWindowSize
Sets the SXSSF row access window size. Must be set at construction time because POI's SXSSFWorkbook takes it as a constructor argument.- Parameters:
size- row window (must be positive)- Returns:
- this options object for chaining
-