public enum XlsxType extends Enum<XlsxType>
Enum Constant and Description |
---|
XLSM
Excel 2007 XML Macro-Enabled Workbook.
|
XLSX
Excel 2007 XML Workbook.
|
XLTM
Excel 2007 XML Macro-Enabled Template.
|
XLTX
Excel 2007 XML Template.
|
Modifier and Type | Method and Description |
---|---|
static XlsxType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XlsxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XlsxType XLSM
public static final XlsxType XLSX
public static final XlsxType XLTM
public static final XlsxType XLTX
public static XlsxType 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 XlsxType[] values()
for (XlsxType c : XlsxType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.