public enum NotificationSeverityLevel extends java.lang.Enum<NotificationSeverityLevel>
Enum Constant and Description |
---|
Advisory |
Blocking |
Complete |
Neutral |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static NotificationSeverityLevel |
valueOf(int intValue) |
static NotificationSeverityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationSeverityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationSeverityLevel Neutral
public static final NotificationSeverityLevel Advisory
public static final NotificationSeverityLevel Blocking
public static final NotificationSeverityLevel Complete
public static NotificationSeverityLevel[] values()
for (NotificationSeverityLevel c : NotificationSeverityLevel.values()) System.out.println(c);
public static NotificationSeverityLevel 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 static NotificationSeverityLevel valueOf(int intValue)
public int getValue()