Enum Class ExportContextKeys.Excel
- All Implemented Interfaces:
Serializable
,Comparable<ExportContextKeys.Excel>
,Constable
- Enclosing class:
- ExportContextKeys
Keys for Excel export requests.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe current Apache POI Cell instance.The current Apache POI column index.The current Apache POI CreationHelper instance.The current Apache POI Row instance.The current Apache POI row index.The current Apache POI Sheet instance.The current Apache POI Workbook instance. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExportContextKeys.Excel
Returns the enum constant of this class with the specified name.static ExportContextKeys.Excel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
POI_WORKBOOK
The current Apache POI Workbook instance. Value type isorg.apache.poi.hssf.usermodel.HSSFWorkbook
. Read-only. -
POI_HELPER
The current Apache POI CreationHelper instance. Value implementsorg.apache.poi.ss.usermodel.CreationHelper
. Read-only. -
POI_SHEET
The current Apache POI Sheet instance. Value implementsorg.apache.poi.ss.usermodel.Sheet
. Read-only. -
POI_ROWNUM
The current Apache POI row index. Value type isjava.lang.Integer
. Read-only. -
POI_ROW
The current Apache POI Row instance. Value implementsorg.apache.poi.ss.usermodel.Row
. Read-only. -
POI_COLUMN
The current Apache POI column index. Value type isjava.lang.Integer
. Read-only. -
POI_CELL
The current Apache POI Cell instance. Value implementsorg.apache.poi.ss.usermodel.Cell
. Read-only.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-