public enum SheetType extends Enum<SheetType>
Enum Constant and Description |
---|
CHART
Represents a chart that is stored in its own sheet.
|
WORKSHEET
The most common type of sheet is the worksheet, which is represented as a grid of cells.
|
Modifier and Type | Method and Description |
---|---|
static SheetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SheetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SheetType CHART
public static final SheetType WORKSHEET
public static SheetType 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 nullpublic static SheetType[] values()
for (SheetType c : SheetType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.