public enum ExportFormat extends java.lang.Enum<ExportFormat> implements JsonEnum
Enum Constant and Description |
---|
CSV |
JPG |
JSON |
PDF |
PNG |
PRINT |
SVG |
XLSX |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getId() |
java.lang.String |
toString() |
static ExportFormat |
valueOf(java.lang.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 JPG
public static final ExportFormat PNG
public static final ExportFormat SVG
public static final ExportFormat PDF
public static final ExportFormat CSV
public static final ExportFormat JSON
public static final ExportFormat XLSX
public static final ExportFormat PRINT
public static ExportFormat[] values()
for (ExportFormat c : ExportFormat.values()) System.out.println(c);
public static ExportFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getId()
public java.lang.String toString()
toString
in class java.lang.Enum<ExportFormat>