public enum ApplicationImportance extends Enum<ApplicationImportance>
| Enum Constant and Description |
|---|
CRITICAL |
HIGH |
LOW |
MEDIUM |
UNIMPORTANT |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationImportance |
valueOf(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(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 nullCopyright © 2021 Contrast Security. All rights reserved.