public enum ProcessPriority extends Enum<ProcessPriority>
| Enum Constant and Description |
|---|
ABSOLUTELY_FIRST |
ABSOLUTELY_LAST |
FIRST |
LAST |
MIDDLE |
VERY_FIRST |
VERY_LAST |
VERY_VERY_FIRST |
VERY_VERY_LAST |
| Modifier and Type | Method and Description |
|---|---|
static ProcessPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessPriority ABSOLUTELY_FIRST
public static final ProcessPriority VERY_VERY_FIRST
public static final ProcessPriority VERY_FIRST
public static final ProcessPriority FIRST
public static final ProcessPriority MIDDLE
public static final ProcessPriority LAST
public static final ProcessPriority VERY_LAST
public static final ProcessPriority VERY_VERY_LAST
public static final ProcessPriority ABSOLUTELY_LAST
public static ProcessPriority[] values()
for (ProcessPriority c : ProcessPriority.values()) System.out.println(c);
public static ProcessPriority 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 © 2017. All rights reserved.