public enum ChipsetType extends java.lang.Enum<ChipsetType>
{8B4096A8-A7C3-4D3B-BBB1-05A0A51EC394}
Enum Constant and Description |
---|
ICH9
A ICH9 (I/O Controller Hub) chipset.
|
Null
null value.
|
PIIX3
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 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)