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