|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CPUPropertyType>
org.virtualbox_5_1.CPUPropertyType
public enum CPUPropertyType
Virtual CPU property type. This enumeration represents possible values of the IMachine get- and setCPUProperty methods. Interface ID: {CC6ECDAD-A07C-4E81-9C0E-D767E0678D5A}
Enum Constant Summary | |
---|---|
APIC
This setting determines whether an APIC is part of the virtual CPU. |
|
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. |
|
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/VM and continue execution. |
|
X2APIC
This setting determines whether an x2APIC is part of the virtual CPU. |
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 |
---|
public static final CPUPropertyType Null
public static final CPUPropertyType PAE
public static final CPUPropertyType LongMode
public static final CPUPropertyType TripleFaultReset
public static final CPUPropertyType APIC
public static final CPUPropertyType X2APIC
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static CPUPropertyType fromValue(long v)
public static CPUPropertyType fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |