public enum ExportFileType extends Enum<ExportFileType> implements ChartEnum
| Enum Constant and Description |
|---|
APPLICATION_PDF |
IMAGE_JPEG |
IMAGE_PNG |
IMAGE_SVG_XML |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ExportFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportFileType IMAGE_PNG
public static final ExportFileType IMAGE_JPEG
public static final ExportFileType APPLICATION_PDF
public static final ExportFileType IMAGE_SVG_XML
public static ExportFileType[] values()
for (ExportFileType c : ExportFileType.values()) System.out.println(c);
public static ExportFileType 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 toString()
toString in class Enum<ExportFileType>Copyright © 2025. All rights reserved.