public enum OutputFormat extends Enum<OutputFormat>
Enum Constant and Description |
---|
csv |
csvMeta |
docx |
html |
jrprint |
ods |
odt |
pdf |
pptx |
print |
rtf |
view |
xhtml |
xls |
xlsMeta |
xlsx |
xml |
Modifier and Type | Method and Description |
---|---|
static OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormat view
public static final OutputFormat print
public static final OutputFormat jrprint
public static final OutputFormat pdf
public static final OutputFormat rtf
public static final OutputFormat docx
public static final OutputFormat odt
public static final OutputFormat html
public static final OutputFormat xml
public static final OutputFormat xls
public static final OutputFormat xlsMeta
public static final OutputFormat xlsx
public static final OutputFormat csv
public static final OutputFormat csvMeta
public static final OutputFormat ods
public static final OutputFormat pptx
public static final OutputFormat xhtml
public static OutputFormat[] values()
for (OutputFormat c : OutputFormat.values()) System.out.println(c);
public static OutputFormat 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 © 2012–2018 Cenote GmbH. All rights reserved.