org.virtualbox_7_0
Enum IommuType

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

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

The IOMMU type. This enumeration represents possible values for theIMachine.getIommuType()attribute. Interface ID: {F47339CB-B94E-48FE-B507-2900103D7B9F}


Enum Constant Summary
AMD
          An AMD IOMMU.
Automatic
          No IOMMU is present.
Intel
          An Intel IOMMU.
None
          No IOMMU is present.
 
Method Summary
static IommuType fromValue(long v)
           
static IommuType fromValue(java.lang.String v)
           
 int value()
           
static IommuType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IommuType[] 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

None

public static final IommuType None
No IOMMU is present.


Automatic

public static final IommuType Automatic
No IOMMU is present.


AMD

public static final IommuType AMD
An AMD IOMMU.


Intel

public static final IommuType Intel
An Intel IOMMU.

Method Detail

values

public static IommuType[] 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 (IommuType c : IommuType.values())
    System.out.println(c);

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

valueOf

public static IommuType 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 IommuType fromValue(long v)

fromValue

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