public enum ExportFormat extends Enum<ExportFormat>
| Enum Constant and Description |
|---|
csv |
doc |
html |
ods |
odt |
pdf |
png |
ppt |
rtf |
swf |
tsv |
txt |
xls |
zip |
| Modifier and Type | Method and Description |
|---|---|
static ExportFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportFormat pdf
public static final ExportFormat html
public static final ExportFormat png
public static final ExportFormat txt
public static final ExportFormat odt
public static final ExportFormat rtf
public static final ExportFormat doc
public static final ExportFormat zip
public static final ExportFormat xls
public static final ExportFormat csv
public static final ExportFormat ods
public static final ExportFormat tsv
public static final ExportFormat swf
public static final ExportFormat ppt
public static ExportFormat[] values()
for (ExportFormat c : ExportFormat.values()) System.out.println(c);
public static ExportFormat 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 nullCopyright © 2018. All rights reserved.