public static enum ExcelWorksheet.Pane extends java.lang.Enum<ExcelWorksheet.Pane>
Enum Constant and Description |
---|
LOWER_LEFT |
LOWER_RIGHT |
UPPER_LEFT |
UPPER_RIGHT |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static ExcelWorksheet.Pane |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExcelWorksheet.Pane[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelWorksheet.Pane LOWER_RIGHT
public static final ExcelWorksheet.Pane UPPER_RIGHT
public static final ExcelWorksheet.Pane LOWER_LEFT
public static final ExcelWorksheet.Pane UPPER_LEFT
public static ExcelWorksheet.Pane[] values()
for (ExcelWorksheet.Pane c : ExcelWorksheet.Pane.values()) System.out.println(c);
public static ExcelWorksheet.Pane 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 value()
[email protected]