public enum ChipsetType extends java.lang.Enum<ChipsetType>
{733D5F16-1F47-4E25-B272-D7C138BC2E3D}
Enum Constant and Description |
---|
ARMv8Virtual
ARM: Virtual ARMv8 base platform (board).
|
ICH9
x86: A ICH9 (I/O Controller Hub) chipset.
|
Null
null value.
|
PIIX3
x86: A PIIX3 (PCI IDE ISA Xcelerator) chipset.
|
Modifier and Type | Method and Description |
---|---|
static ChipsetType |
fromValue(long v) |
static ChipsetType |
fromValue(java.lang.String v) |
int |
value() |
static ChipsetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChipsetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChipsetType Null
public static final ChipsetType PIIX3
public static final ChipsetType ICH9
public static final ChipsetType ARMv8Virtual
public static ChipsetType[] values()
for (ChipsetType c : ChipsetType.values()) System.out.println(c);
public static ChipsetType 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 ChipsetType fromValue(long v)
public static ChipsetType fromValue(java.lang.String v)