org.virtualbox_6_0
Enum VMExecutionEngine

java.lang.Object
  extended by java.lang.Enum<VMExecutionEngine>
      extended by org.virtualbox_6_0.VMExecutionEngine
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VMExecutionEngine>

public enum VMExecutionEngine
extends java.lang.Enum<VMExecutionEngine>

The main execution engine of a VM. Interface ID: {56029577-31F7-44D2-3334-7ECBF95294B6}


Enum Constant Summary
HwVirt
          Hardware assisted virtualization thru HM.
NativeApi
          Hardware assisted virtualization thru native API (NEM).
NotSet
          Has not yet been set (try again later).
RawMode
          Raw-mode.
 
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

NotSet

public static final VMExecutionEngine NotSet
Has not yet been set (try again later).


RawMode

public static final VMExecutionEngine RawMode
Raw-mode.


HwVirt

public static final VMExecutionEngine HwVirt
Hardware assisted virtualization thru HM.


NativeApi

public static final VMExecutionEngine NativeApi
Hardware assisted virtualization thru native API (NEM).

Method Detail

values

public static VMExecutionEngine[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (VMExecutionEngine c : VMExecutionEngine.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static VMExecutionEngine valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static VMExecutionEngine fromValue(long v)

fromValue

public static VMExecutionEngine fromValue(java.lang.String v)