org.virtualbox_7_1
Enum ChipsetType

java.lang.Object
  extended by java.lang.Enum<ChipsetType>
      extended by org.virtualbox_7_1.ChipsetType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ChipsetType>

public enum ChipsetType
extends java.lang.Enum<ChipsetType>

Type of emulated chipset (think x86 southbridge or ARM SoC/board). Interface ID: {733D5F16-1F47-4E25-B272-D7C138BC2E3D}


Enum Constant Summary
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.
 
Method Summary
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.
 
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

Null

public static final ChipsetType Null
null value. Never used by the API.


PIIX3

public static final ChipsetType PIIX3
x86: A PIIX3 (PCI IDE ISA Xcelerator) chipset.


ICH9

public static final ChipsetType ICH9
x86: A ICH9 (I/O Controller Hub) chipset.


ARMv8Virtual

public static final ChipsetType ARMv8Virtual
ARM: Virtual ARMv8 base platform (board).

Method Detail

values

public static ChipsetType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ChipsetType c : ChipsetType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ChipsetType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static ChipsetType fromValue(long v)

fromValue

public static ChipsetType fromValue(java.lang.String v)