public enum ReportType extends Enum<ReportType>
| Enum Constant and Description |
|---|
CSV |
DOCX |
HTML |
JSON |
PDF |
PPTX |
RTF |
SWF |
TXT |
XLS |
XLSX |
XML |
| Modifier and Type | Method and Description |
|---|---|
String |
getContentType() |
String |
getExporter() |
String |
getOutput() |
static ReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportType PDF
public static final ReportType XLS
public static final ReportType XLSX
public static final ReportType RTF
public static final ReportType DOCX
public static final ReportType PPTX
public static final ReportType CSV
public static final ReportType TXT
public static final ReportType XML
public static final ReportType JSON
public static final ReportType SWF
public static final ReportType HTML
public static ReportType[] values()
for (ReportType c : ReportType.values()) System.out.println(c);
public static ReportType 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 String getExporter()
public String getOutput()
public String getContentType()
Copyright © 2023. All rights reserved.