public enum WorkbookType extends Enum<WorkbookType>
| Modifier and Type | Method and Description |
|---|---|
abstract org.apache.poi.ss.usermodel.Workbook |
create() |
String |
getDescription() |
static WorkbookType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkbookType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkbookType XLS
public static final WorkbookType XML
public static WorkbookType[] values()
for (WorkbookType c : WorkbookType.values()) System.out.println(c);
public static WorkbookType 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 abstract org.apache.poi.ss.usermodel.Workbook create()
public String getDescription()
Copyright © 2018. All Rights Reserved.