Package csv.impl

Interface ExcelFormatter

All Known Implementing Classes:
DefaultExcelFormatter

public interface ExcelFormatter
Interface for formatting Excel sheets
Author:
RalphSchuster
  • Method Details

    • setStyle

      void setStyle(ExcelWriter writer, org.apache.poi.ss.usermodel.Cell cell, Object value)
      Sets the cell style.
      Parameters:
      writer - writer that requires the information
      cell - cell to be formatted
      value - value in cell
    • finalize

      @Deprecated void finalize(ExcelWriter writer, int rowCount, int columnCount)
      Deprecated.
      Use the new method finalize(ExcelWriter).
      Finalizes the workbook. This method is called immediately before the ExcelWriter writes the complete workbook to the underlying output stream.
      Parameters:
      writer - the calling writer
      rowCount - the number of rows in the selected sheet
      columnCount - the number of columns modified in the selected sheet
    • finalize

      void finalize(ExcelWriter writer)
      Finalizes the workbook. This method is called immediately before the ExcelWriter writes the complete workbook to the underlying output stream.
      Parameters:
      writer - the calling writer
      Since:
      4.1