public enum NoticePriority extends Enum<NoticePriority>
Modifier and Type | Method and Description |
---|---|
int |
value() |
static NoticePriority |
valueOf(int priority) |
static NoticePriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoticePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoticePriority CRITICAL
public static final NoticePriority IMPORTANT
public static final NoticePriority NORMAL
public static final NoticePriority LOW
public static NoticePriority[] values()
for (NoticePriority c : NoticePriority.values()) System.out.println(c);
public static NoticePriority 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 value()
public static NoticePriority valueOf(int priority)
This work is licensed under a Creative Commons Attribution 4.0 International License.