org.virtualbox_4_3
Enum CPUPropertyType

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

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

Virtual CPU property type. This enumeration represents possible values of the IMachine get- and setCPUProperty methods. Interface ID: {52BC41F4-A279-45DA-88AB-3A1D86FB73EB}


Enum Constant Summary
LongMode
          This setting determines whether VirtualBox will advertise long mode (i.e.
Null
          Null value (never used by the API).
PAE
          This setting determines whether VirtualBox will expose the Physical Address Extension (PAE) feature of the host CPU to the guest.
Synthetic
          This setting determines whether VirtualBox will expose a synthetic CPU to the guest to allow teleporting between host systems that differ significantly.
TripleFaultReset
          This setting determines whether a triple fault within a guest will trigger an internal error condition and stop the VM (default) or reset the virtual CPU and continue execution.
 
Method Summary
static CPUPropertyType fromValue(long v)
           
static CPUPropertyType fromValue(java.lang.String v)
           
 int value()
           
static CPUPropertyType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CPUPropertyType[] 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

Null

public static final CPUPropertyType Null
Null value (never used by the API).


PAE

public static final CPUPropertyType PAE
This setting determines whether VirtualBox will expose the Physical Address Extension (PAE) feature of the host CPU to the guest. Note that in case PAE is not available, it will not be reported.


Synthetic

public static final CPUPropertyType Synthetic
This setting determines whether VirtualBox will expose a synthetic CPU to the guest to allow teleporting between host systems that differ significantly.


LongMode

public static final CPUPropertyType LongMode
This setting determines whether VirtualBox will advertise long mode (i.e. 64-bit guest support) and let the guest enter it.


TripleFaultReset

public static final CPUPropertyType TripleFaultReset
This setting determines whether a triple fault within a guest will trigger an internal error condition and stop the VM (default) or reset the virtual CPU and continue execution.

Method Detail

values

public static CPUPropertyType[] 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 (CPUPropertyType c : CPUPropertyType.values())
    System.out.println(c);

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

valueOf

public static CPUPropertyType 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 CPUPropertyType fromValue(long v)

fromValue

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