Enum Class ExportContextKeys.Excel

All Implemented Interfaces:
Serializable, Comparable<ExportContextKeys.Excel>, Constable
Enclosing class:
ExportContextKeys

public static enum ExportContextKeys.Excel extends Enum<ExportContextKeys.Excel>
Keys for Excel export requests.
  • Enum Constant Details

    • POI_WORKBOOK

      public static final ExportContextKeys.Excel POI_WORKBOOK
      The current Apache POI Workbook instance. Value type is org.apache.poi.hssf.usermodel.HSSFWorkbook. Read-only.
    • POI_HELPER

      public static final ExportContextKeys.Excel POI_HELPER
      The current Apache POI CreationHelper instance. Value implements org.apache.poi.ss.usermodel.CreationHelper. Read-only.
    • POI_SHEET

      public static final ExportContextKeys.Excel POI_SHEET
      The current Apache POI Sheet instance. Value implements org.apache.poi.ss.usermodel.Sheet. Read-only.
    • POI_ROWNUM

      public static final ExportContextKeys.Excel POI_ROWNUM
      The current Apache POI row index. Value type is java.lang.Integer. Read-only.
    • POI_ROW

      public static final ExportContextKeys.Excel POI_ROW
      The current Apache POI Row instance. Value implements org.apache.poi.ss.usermodel.Row. Read-only.
    • POI_COLUMN

      public static final ExportContextKeys.Excel POI_COLUMN
      The current Apache POI column index. Value type is java.lang.Integer. Read-only.
    • POI_CELL

      public static final ExportContextKeys.Excel POI_CELL
      The current Apache POI Cell instance. Value implements org.apache.poi.ss.usermodel.Cell. Read-only.
  • Method Details

    • values

      public static ExportContextKeys.Excel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ExportContextKeys.Excel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null