org.virtualbox_5_0
Enum HWVirtExPropertyType

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

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

Hardware virtualization property type. This enumeration represents possible values for theIMachine.getHWVirtExProperty(org.virtualbox_5_0.HWVirtExPropertyType)andIMachine.setHWVirtExProperty(org.virtualbox_5_0.HWVirtExPropertyType,Boolean)methods. Interface ID: {411AD0EA-AEEB-44CB-9D03-1624D0D025AC}


Enum Constant Summary
Enabled
          Whether hardware virtualization (VT-x/AMD-V) is enabled at all.
Force
          Whether the VM should fail to start if hardware virtualization (VT-x/AMD-V) cannot be used.
LargePages
          Whether large page allocation is enabled; requires nested paging and a 64-bit host.
NestedPaging
          Whether Nested Paging is enabled.
Null
          Null value (never used by the API).
UnrestrictedExecution
          Whether VT-x unrestricted execution is enabled.
VPID
          Whether VT-x VPID is enabled.
 
Method Summary
static HWVirtExPropertyType fromValue(long v)
           
static HWVirtExPropertyType fromValue(java.lang.String v)
           
 int value()
           
static HWVirtExPropertyType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HWVirtExPropertyType[] 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 HWVirtExPropertyType Null
Null value (never used by the API).


Enabled

public static final HWVirtExPropertyType Enabled
Whether hardware virtualization (VT-x/AMD-V) is enabled at all. If such extensions are not available, they will not be used.


VPID

public static final HWVirtExPropertyType VPID
Whether VT-x VPID is enabled. If this extension is not available, it will not be used.


NestedPaging

public static final HWVirtExPropertyType NestedPaging
Whether Nested Paging is enabled. If this extension is not available, it will not be used.


UnrestrictedExecution

public static final HWVirtExPropertyType UnrestrictedExecution
Whether VT-x unrestricted execution is enabled. If this feature is not available, it will not be used.


LargePages

public static final HWVirtExPropertyType LargePages
Whether large page allocation is enabled; requires nested paging and a 64-bit host.


Force

public static final HWVirtExPropertyType Force
Whether the VM should fail to start if hardware virtualization (VT-x/AMD-V) cannot be used. If not set, there will be an automatic fallback to software virtualization.

Method Detail

values

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

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

valueOf

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

fromValue

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