public static enum ReportGenerator.Format extends java.lang.Enum<ReportGenerator.Format>
| Modifier and Type | Method and Description |
|---|---|
static ReportGenerator.Format |
fromStringOrNull(java.lang.String value) |
static ReportGenerator.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportGenerator.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportGenerator.Format HTML
public static final ReportGenerator.Format TEXT
public static final ReportGenerator.Format ASCIIDOC
public static final ReportGenerator.Format HTML5
public static ReportGenerator.Format[] values()
for (ReportGenerator.Format c : ReportGenerator.Format.values()) System.out.println(c);
public static ReportGenerator.Format 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 static ReportGenerator.Format fromStringOrNull(java.lang.String value)