public static enum ApplicationExporter.ExportImpl extends Enum<ApplicationExporter.ExportImpl>
| Enum Constant and Description |
|---|
CONSOLE_EXPORTER |
CSV_EXPORTER |
JSON_EXPORTER |
| Modifier and Type | Method and Description |
|---|---|
Class<ApplicationExporter> |
getClazz() |
static ApplicationExporter.ExportImpl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationExporter.ExportImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationExporter.ExportImpl JSON_EXPORTER
public static final ApplicationExporter.ExportImpl CONSOLE_EXPORTER
public static final ApplicationExporter.ExportImpl CSV_EXPORTER
public static ApplicationExporter.ExportImpl[] values()
for (ApplicationExporter.ExportImpl c : ApplicationExporter.ExportImpl.values()) System.out.println(c);
public static ApplicationExporter.ExportImpl 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 Class<ApplicationExporter> getClazz()
Copyright © 2020. All rights reserved.