Uses of Class
jp.ecuacion.util.poi.excel.table.ExcelTable.ContextContainer
Packages that use ExcelTable.ContextContainer
Package
Description
Provides excel table reader abstract classes and interfaces.
Provides excel table writer abstract classes and interfaces.
Provides excel-related poi utility methods used by
ecuacion-util-poi classes.-
Uses of ExcelTable.ContextContainer in jp.ecuacion.util.poi.excel.table.reader
Constructors in jp.ecuacion.util.poi.excel.table.reader with parameters of type ExcelTable.ContextContainerModifierConstructorDescriptionIterableReader(ExcelTableReader<T> reader, ExcelTable.ContextContainer context, int numberOfheaderLines) Constructs a new instance.IteratorReader(ExcelTableReader<T> reader, ExcelTable.ContextContainer context, int numberOfheaderLines) Constructs a new instance. -
Uses of ExcelTable.ContextContainer in jp.ecuacion.util.poi.excel.table.writer
Constructors in jp.ecuacion.util.poi.excel.table.writer with parameters of type ExcelTable.ContextContainerModifierConstructorDescriptionIterableWriter(ExcelTableWriter<T> writer, ExcelTable.ContextContainer context, int numberOfheaderLines) Constructs a new instance. -
Uses of ExcelTable.ContextContainer in jp.ecuacion.util.poi.excel.util
Methods in jp.ecuacion.util.poi.excel.util that return ExcelTable.ContextContainerModifier and TypeMethodDescriptionExcelReadUtil.getReadyToReadTableData(ExcelTableReader<T> reader, org.apache.poi.ss.usermodel.Workbook workbook, String sheetName, Integer numberOfHeaderLinesIfReadsHeaderOnlyOrNull) Gets ready to read table data.ExcelWriteUtil.getReadyToWriteTableData(ExcelTableWriter<T> writer, org.apache.poi.ss.usermodel.Workbook workbook, String sheetName) Gets ready to write table data.Methods in jp.ecuacion.util.poi.excel.util with parameters of type ExcelTable.ContextContainerModifier and TypeMethodDescription<T> List<T> ExcelReadUtil.readTableLine(ExcelTableReader<T> reader, ExcelTable.ContextContainer context, int rowNumber) Provides common procedure for read one line of a table.<T> voidExcelWriteUtil.writeTableLine(ExcelTableWriter<T> writer, ExcelTable.ContextContainer context, int rowNumber, List<T> columnList) Provides common procedure for write one line of a table.