Interface JxlsReportOutputLogic


public interface JxlsReportOutputLogic

The interface for implementing Report Output Logic for JXLS.

This interface is used to have the output process described when outputting a report using JXLS.
The person in charge of the application can inherit this interface and describe their own report output processing.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    processGridTemplate(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String objectProps)
    Default method corresponding to JxlsHelper.processGridTemplate(InputStream, OutputStream, Context, String)
    default void
    processGridTemplateAtCell(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String objectProps, String targetCell)
    Default method corresponding toJxlsHelper.processGridTemplateAtCell(InputStream, OutputStream, Context, String, String)
    default void
    processTemplateAtCell(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String targetCell)
    Default method corresponding to JxlsHelper.processTemplateAtCell(InputStream, OutputStream, Context, String)
    void
    reportWrite(org.jxls.transform.Transformer transformer, org.jxls.common.Context context)
    Report Output Logic for JXLS
  • Method Details

    • reportWrite

      void reportWrite(org.jxls.transform.Transformer transformer, org.jxls.common.Context context)
      Report Output Logic for JXLS
      Parameters:
      transformer -
      context -
    • processTemplateAtCell

      default void processTemplateAtCell(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String targetCell) throws IOException
      Default method corresponding to JxlsHelper.processTemplateAtCell(InputStream, OutputStream, Context, String)
      Parameters:
      transformer -
      context -
      targetCell -
      Throws:
      IOException
    • processGridTemplate

      default void processGridTemplate(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String objectProps) throws IOException
      Default method corresponding to JxlsHelper.processGridTemplate(InputStream, OutputStream, Context, String)
      Parameters:
      transformer -
      context -
      objectProps -
      Throws:
      IOException
    • processGridTemplateAtCell

      default void processGridTemplateAtCell(org.jxls.transform.Transformer transformer, org.jxls.common.Context context, String objectProps, String targetCell) throws IOException
      Default method corresponding toJxlsHelper.processGridTemplateAtCell(InputStream, OutputStream, Context, String, String)
      Parameters:
      transformer -
      context -
      objectProps -
      targetCell -
      Throws:
      IOException