public enum CPUPropertyType extends java.lang.Enum<CPUPropertyType>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final CPUPropertyType Null
public static final CPUPropertyType PAE
public static final CPUPropertyType Synthetic
public static final CPUPropertyType LongMode
public static final CPUPropertyType TripleFaultReset
public static CPUPropertyType[] values()
for (CPUPropertyType c : CPUPropertyType.values()) System.out.println(c);
public static CPUPropertyType 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 CPUPropertyType fromValue(long v)
public static CPUPropertyType fromValue(java.lang.String v)