public static enum ExportContextKeys.Excel extends Enum<ExportContextKeys.Excel>
| Enum Constant and Description |
|---|
POI_CELL
The current Apache POI Cell instance.
|
POI_COLUMN
The current Apache POI column index.
|
POI_HELPER
The current Apache POI CreationHelper instance.
|
POI_ROW
The current Apache POI Row instance.
|
POI_ROWNUM
The current Apache POI row index.
|
POI_SHEET
The current Apache POI Sheet instance.
|
POI_WORKBOOK
The current Apache POI Workbook instance.
|
| Modifier and Type | Method and Description |
|---|---|
static ExportContextKeys.Excel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportContextKeys.Excel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportContextKeys.Excel POI_WORKBOOK
org.apache.poi.hssf.usermodel.HSSFWorkbook. Read-only.public static final ExportContextKeys.Excel POI_HELPER
org.apache.poi.ss.usermodel.CreationHelper. Read-only.public static final ExportContextKeys.Excel POI_SHEET
org.apache.poi.ss.usermodel.Sheet. Read-only.public static final ExportContextKeys.Excel POI_ROWNUM
java.lang.Integer. Read-only.public static final ExportContextKeys.Excel POI_ROW
org.apache.poi.ss.usermodel.Row. Read-only.public static final ExportContextKeys.Excel POI_COLUMN
java.lang.Integer. Read-only.public static final ExportContextKeys.Excel POI_CELL
org.apache.poi.ss.usermodel.Cell. Read-only.public static ExportContextKeys.Excel[] values()
for (ExportContextKeys.Excel c : ExportContextKeys.Excel.values()) System.out.println(c);
public static ExportContextKeys.Excel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019 ALM Works. All Rights Reserved.