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