Package com.gooddata.report
Enum ReportExportFormat
- java.lang.Object
-
- java.lang.Enum<ReportExportFormat>
-
- com.gooddata.report.ReportExportFormat
-
- All Implemented Interfaces:
Serializable,Comparable<ReportExportFormat>
@Deprecated public enum ReportExportFormat extends Enum<ReportExportFormat>
Deprecated.useExportFormatFormat of exported report
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static String[]arrayToStringArray(ReportExportFormat... formats)Deprecated.StringgetValue()Deprecated.static ExportFormattoExportFormat(ReportExportFormat format)Deprecated.static ReportExportFormatvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static ReportExportFormat[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF
public static final ReportExportFormat PDF
Deprecated.
-
XLS
public static final ReportExportFormat XLS
Deprecated.
-
PNG
public static final ReportExportFormat PNG
Deprecated.
-
CSV
public static final ReportExportFormat CSV
Deprecated.
-
HTML
public static final ReportExportFormat HTML
Deprecated.
-
XLSX
public static final ReportExportFormat XLSX
Deprecated.
-
-
Method Detail
-
values
public static ReportExportFormat[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReportExportFormat c : ReportExportFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportExportFormat valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
Deprecated.
-
arrayToStringArray
public static String[] arrayToStringArray(ReportExportFormat... formats)
Deprecated.
-
toExportFormat
public static ExportFormat toExportFormat(ReportExportFormat format)
Deprecated.
-
-