public enum VMExecutionEngine extends java.lang.Enum<VMExecutionEngine>
{69485F52-5CD3-40C9-946F-AE7D5C50798B}
Enum Constant and Description |
---|
Default
Use the default/best available option for the host.
|
HwVirt
Hardware assisted virtualization through HM.
|
Interpreter
CPU emulation using the interpreter.
|
NativeApi
Hardware assisted virtualization thru native API (NEM).
|
NotSet
Has not yet been set (try again later), for reading the actual used execution
engine from
IMachineDebugger.getExecutionEngine() . |
Recompiler
CPU emulation using the recompiler.
|
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
IMachineDebugger.getExecutionEngine()
.
This can not be set throughIMachine.getVMExecutionEngine()
.public static final VMExecutionEngine Default
IMachineDebugger.getExecutionEngine()
.public static final VMExecutionEngine HwVirt
public static final VMExecutionEngine NativeApi
public static final VMExecutionEngine Interpreter
public static final VMExecutionEngine Recompiler
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)