public static enum Scheduler.Priority extends Enum<Scheduler.Priority>
| Modifier and Type | Field and Description |
|---|---|
static Scheduler.Priority |
DEFAULT |
static Scheduler.Priority |
FLOOR |
| Modifier and Type | Method and Description |
|---|---|
static Scheduler.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scheduler.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scheduler.Priority HIGHEST
public static final Scheduler.Priority HIGH
public static final Scheduler.Priority NORMAL
public static final Scheduler.Priority LOW
public static final Scheduler.Priority LOWEST
public static final Scheduler.Priority DEFAULT
public static final Scheduler.Priority FLOOR
public static Scheduler.Priority[] values()
for (Scheduler.Priority c : Scheduler.Priority.values()) System.out.println(c);
public static Scheduler.Priority 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 nullCopyright © 2018. All rights reserved.