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