public enum ReportType extends java.lang.Enum<ReportType>
| Enum Constant and Description |
|---|
VERSION |
VERSION_LICENSE |
VULNERABILITY_REMEDIATION |
VULNERABILITY_STATUS |
VULNERABILITY_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
prettyPrint() |
static ReportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportType VERSION
public static final ReportType VERSION_LICENSE
public static final ReportType VULNERABILITY_REMEDIATION
public static final ReportType VULNERABILITY_STATUS
public static final ReportType VULNERABILITY_UPDATE
public static ReportType[] values()
for (ReportType c : ReportType.values()) System.out.println(c);
public static ReportType 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 java.lang.String prettyPrint()