ExportOutput
instead.public enum ExportExcelOutput extends Enum<ExportExcelOutput>
Enum Constant and Description |
---|
EXCEL_2003
Deprecated.
|
EXCEL_2007
Deprecated.
|
UNKNOWN
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
String |
getExtension()
Deprecated.
Returns the extension of this
ExportExcelOutput instance. |
String |
getType()
Deprecated.
Returns the type of this
ExportExcelOutput instance. |
boolean |
isExcel()
Deprecated.
Checks if this
ExportExcelOutput instance is a valid Excel output. |
boolean |
isExcelXls()
Deprecated.
Checks if this
ExportExcelOutput instance is Excel 2003. |
boolean |
isExcelXlsx()
Deprecated.
Checks if this
ExportExcelOutput instance is Excel 2007. |
boolean |
isExcelXlsX()
Deprecated.
Checks if this
ExportExcelOutput instance is Excel 2007. |
static ExportExcelOutput |
parse(String extension)
Deprecated.
Returns
ExportExcelOutput from the extension. |
static ExportExcelOutput |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ExportExcelOutput[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportExcelOutput EXCEL_2003
public static final ExportExcelOutput EXCEL_2007
public static final ExportExcelOutput UNKNOWN
public static ExportExcelOutput[] values()
for (ExportExcelOutput c : ExportExcelOutput.values()) System.out.println(c);
public static ExportExcelOutput 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 ExportExcelOutput parse(String extension)
ExportExcelOutput
from the extension.public boolean isExcel()
ExportExcelOutput
instance is a valid Excel output.public boolean isExcelXls()
ExportExcelOutput
instance is Excel 2003.public boolean isExcelXlsX()
ExportExcelOutput
instance is Excel 2007.public boolean isExcelXlsx()
ExportExcelOutput
instance is Excel 2007.public String getType()
ExportExcelOutput
instance.public String getExtension()
ExportExcelOutput
instance.