public static enum ReportGenerator.Format extends java.lang.Enum<ReportGenerator.Format>
| Enum Constant and Description |
|---|
ALL
Generate all reports.
|
CSV
Generate CSV report.
|
GITLAB
Generate Report in GitLab dependency check format:
|
HTML
Generate HTML report.
|
JENKINS
Generate HTML report without script or non-vulnerable libraries for
Jenkins.
|
JSON
Generate JSON report.
|
JUNIT
Generate JUNIT report.
|
SARIF
Generate Sarif report.
|
XML
Generate XML report.
|
| Modifier and Type | Method and Description |
|---|---|
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 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 SARIF
public static final ReportGenerator.Format JENKINS
public static final ReportGenerator.Format JUNIT
public static final ReportGenerator.Format GITLAB
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 nullCopyright© 2012-21 Jeremy Long. All Rights Reserved.