public enum VMExecutionEngine extends java.lang.Enum<VMExecutionEngine>
{6E3F78F9-2DFE-4ED7-863D-67CAD351E9D8}
Enum Constant and Description |
---|
Emulated
Emulated thru IEM.
|
HwVirt
Hardware assisted virtualization thru HM.
|
NativeApi
Hardware assisted virtualization thru native API (NEM).
|
NotSet
Has not yet been set (try again later).
|
Modifier and Type | Method and Description |
---|---|
static VMExecutionEngine |
fromValue(long v) |
static VMExecutionEngine |
fromValue(java.lang.String v) |
int |
value() |
static VMExecutionEngine |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VMExecutionEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VMExecutionEngine NotSet
public static final VMExecutionEngine Emulated
public static final VMExecutionEngine HwVirt
public static final VMExecutionEngine NativeApi
public static VMExecutionEngine[] values()
for (VMExecutionEngine c : VMExecutionEngine.values()) System.out.println(c);
public static VMExecutionEngine 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 VMExecutionEngine fromValue(long v)
public static VMExecutionEngine fromValue(java.lang.String v)