public static enum ExcelExporter.ExportMode extends java.lang.Enum<ExcelExporter.ExportMode>
| Enum Constant and Description |
|---|
ALL_ROWS |
SELECTED_ROWS |
| Modifier and Type | Method and Description |
|---|---|
static ExcelExporter.ExportMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExcelExporter.ExportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelExporter.ExportMode SELECTED_ROWS
public static final ExcelExporter.ExportMode ALL_ROWS
public static ExcelExporter.ExportMode[] values()
for (ExcelExporter.ExportMode c : ExcelExporter.ExportMode.values()) System.out.println(c);
public static ExcelExporter.ExportMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null