Uses of Class
jp.ecuacion.util.poi.excel.table.writer.ExcelTableWriter
Packages that use ExcelTableWriter
Package
Description
Provides excel table writer abstract classes and interfaces.
Provides excel table writer concrete classes.
Provides excel-related poi utility methods used by
ecuacion-util-poi classes.-
Uses of ExcelTableWriter in jp.ecuacion.util.poi.excel.table.writer
Methods in jp.ecuacion.util.poi.excel.table.writer that return ExcelTableWriterModifier and TypeMethodDescriptionExcelTableWriter.ignoresAdditionalColumnsOfHeaderData(boolean value) ExcelTableWriter.isVerticalAndHorizontalOpposite(boolean value) Constructors in jp.ecuacion.util.poi.excel.table.writer with parameters of type ExcelTableWriterModifierConstructorDescriptionIterableWriter(ExcelTableWriter<T> writer, ExcelTable.ContextContainer context, int numberOfheaderLines) Constructs a new instance. -
Uses of ExcelTableWriter in jp.ecuacion.util.poi.excel.table.writer.concrete
Subclasses of ExcelTableWriter in jp.ecuacion.util.poi.excel.table.writer.concreteModifier and TypeClassDescriptionclassReads tables with unknown number of columns, unknown whether it have a header line, unknown header labels if it has a header line.classReads tables with known number of columns, one line header labels if it has a header line. -
Uses of ExcelTableWriter in jp.ecuacion.util.poi.excel.util
Methods in jp.ecuacion.util.poi.excel.util with parameters of type ExcelTableWriterModifier and TypeMethodDescriptionstatic <T> ExcelTable.ContextContainerExcelWriteUtil.getReadyToWriteTableData(ExcelTableWriter<T> writer, org.apache.poi.ss.usermodel.Workbook workbook, String sheetName, int tableStartColumnNumber) Gets ready to write table data.static <T> voidExcelWriteUtil.writeTableLine(ExcelTableWriter<T> writer, ExcelTable.ContextContainer context, int rowNumber, List<T> columnList) Provides common procedure for write one line of a table.