public static enum ReportGenerator.Format extends Enum<ReportGenerator.Format>
| Enum Constant and Description |
|---|
ALL
Generate all reports.
|
CSV
Generate CSV report.
|
HTML
Generate HTML report.
|
JSON
Generate JSON report.
|
JUNIT
Generate JUNIT report.
|
XML
Generate XML report.
|
| Modifier and Type | Method and Description |
|---|---|
static ReportGenerator.Format |
valueOf(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 ALL
public static final ReportGenerator.Format XML
public static final ReportGenerator.Format HTML
public static final ReportGenerator.Format JSON
public static final ReportGenerator.Format CSV
public static final ReportGenerator.Format JUNIT
public static ReportGenerator.Format[] values()
for (ReportGenerator.Format c : ReportGenerator.Format.values()) System.out.println(c);
public static ReportGenerator.Format 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 nullCopyright © 2012–2020 OWASP. All rights reserved.