public enum VmPriority extends Enum<VmPriority>
| Enum Constant and Description |
|---|
DEDICATED
Enum value dedicated.
|
LOWPRIORITY
Enum value lowpriority.
|
| Modifier and Type | Method and Description |
|---|---|
static VmPriority |
fromString(String value)
Parses a serialized value to a VmPriority instance.
|
String |
toString() |
static VmPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VmPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmPriority DEDICATED
public static final VmPriority LOWPRIORITY
public static VmPriority[] values()
for (VmPriority c : VmPriority.values()) System.out.println(c);
public static VmPriority 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 nullpublic static VmPriority fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<VmPriority>Copyright © 2019. All rights reserved.