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