public enum HWVirtExPropertyType extends java.lang.Enum<HWVirtExPropertyType>
IMachine.getHWVirtExProperty(org.virtualbox_6_1.HWVirtExPropertyType)
andIMachine.setHWVirtExProperty(org.virtualbox_6_1.HWVirtExPropertyType,Boolean)
methods.
Interface ID: {BC05551E-E288-467E-1EA3-233DE08E4480}Enum Constant and Description |
---|
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.
|
UseNativeApi
Use the native hypervisor API instead of the VirtualBox one (HM) for VT-X/AMD-V.
|
VPID
Whether VT-x VPID is enabled.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final HWVirtExPropertyType Null
public static final HWVirtExPropertyType Enabled
public static final HWVirtExPropertyType VPID
public static final HWVirtExPropertyType NestedPaging
public static final HWVirtExPropertyType UnrestrictedExecution
public static final HWVirtExPropertyType LargePages
public static final HWVirtExPropertyType Force
public static final HWVirtExPropertyType UseNativeApi
Enabled
isn't set.public static HWVirtExPropertyType[] values()
for (HWVirtExPropertyType c : HWVirtExPropertyType.values()) System.out.println(c);
public static HWVirtExPropertyType 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 HWVirtExPropertyType fromValue(long v)
public static HWVirtExPropertyType fromValue(java.lang.String v)