public enum ExcelWorksheetOption extends java.lang.Enum<ExcelWorksheetOption>
| Enum Constant and Description |
|---|
FOR_DOCUMENT
A worksheet to contain table for PDF Document.
|
FOR_PAGE
A worksheet to contain table for PDF Page.
|
FOR_TABLE
A worksheet to contain only one table.
|
| Modifier and Type | Method and Description |
|---|---|
static ExcelWorksheetOption |
fromInt(int value) |
int |
getValue() |
static ExcelWorksheetOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExcelWorksheetOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelWorksheetOption FOR_TABLE
public static final ExcelWorksheetOption FOR_PAGE
public static final ExcelWorksheetOption FOR_DOCUMENT
public static ExcelWorksheetOption[] values()
for (ExcelWorksheetOption c : ExcelWorksheetOption.values()) System.out.println(c);
public static ExcelWorksheetOption 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 nullpublic int getValue()
public static ExcelWorksheetOption fromInt(int value)