| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<VMExecutionEngine>
org.virtualbox_7_1.VMExecutionEngine
public enum VMExecutionEngine
The main execution engine of a VM.
Interface ID: {69485F52-5CD3-40C9-946F-AE7D5C50798B}
| Enum Constant Summary | |
|---|---|
| DefaultUse the default/best available option for the host. | |
| HwVirtHardware assisted virtualization through HM. | |
| InterpreterCPU emulation using the interpreter. | |
| NativeApiHardware assisted virtualization thru native API (NEM). | |
| NotSetHas not yet been set (try again later), for reading the actual used execution engine from IMachineDebugger.getExecutionEngine(). | |
| RecompilerCPU emulation using the recompiler. | |
| Method Summary | |
|---|---|
| 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. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
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
| Method Detail | 
|---|
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 name
java.lang.NullPointerException - if the argument is nullpublic int value()
public static VMExecutionEngine fromValue(long v)
public static VMExecutionEngine fromValue(java.lang.String v)
| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||