public static enum ObjectQ.Priority extends java.lang.Enum<ObjectQ.Priority>
Enum Constant and Description |
---|
HIGH
High priority.
|
NONE
Priority unassigned.
|
NORMAL
Normal priority.
|
Modifier and Type | Method and Description |
---|---|
static ObjectQ.Priority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.Priority HIGH
public static final ObjectQ.Priority NONE
public static final ObjectQ.Priority NORMAL
public static ObjectQ.Priority 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 ObjectQ.Priority[] values()
for (ObjectQ.Priority c : ObjectQ.Priority.values()) System.out.println(c);