public enum ReportType extends Enum<ReportType>
| Enum Constant and Description |
|---|
ExecutiveSummary |
HIPAACompliance |
KnowledgeBase |
OwaspTopTen2013 |
PCICompliance |
ScanDetail |
| Modifier and Type | Method and Description |
|---|---|
int |
getNumber() |
String |
getNumberAsString() |
static ReportType |
valueOf(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 ScanDetail
public static final ReportType OwaspTopTen2013
public static final ReportType HIPAACompliance
public static final ReportType PCICompliance
public static final ReportType KnowledgeBase
public static final ReportType ExecutiveSummary
public static ReportType[] values()
for (ReportType c : ReportType.values()) System.out.println(c);
public static ReportType 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 int getNumber()
public String getNumberAsString()
Copyright © 2016–2020. All rights reserved.