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