public enum ProcessPriority extends java.lang.Enum<ProcessPriority>
{EE8CAC50-E232-49FE-806B-D1214D9C2E49}
Enum Constant and Description |
---|
Default
Default process priority determined by the OS.
|
Invalid
Invalid priority, do not use.
|
Modifier and Type | Method and Description |
---|---|
static ProcessPriority |
fromValue(long v) |
static ProcessPriority |
fromValue(java.lang.String v) |
int |
value() |
static ProcessPriority |
valueOf(java.lang.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 Invalid
public static final ProcessPriority Default
public static ProcessPriority[] values()
for (ProcessPriority c : ProcessPriority.values()) System.out.println(c);
public static ProcessPriority 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 int value()
public static ProcessPriority fromValue(long v)
public static ProcessPriority fromValue(java.lang.String v)