org.virtualbox_4_1
Enum AudioControllerType

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

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

Virtual audio controller type. Interface ID: {7AFD395C-42C3-444E-8788-3CE80292F36C}


Enum Constant Summary
AC97
           
HDA
           
SB16
           
 
Method Summary
static AudioControllerType fromValue(long v)
           
static AudioControllerType fromValue(java.lang.String v)
           
 int value()
           
static AudioControllerType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AudioControllerType[] 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

AC97

public static final AudioControllerType AC97

SB16

public static final AudioControllerType SB16

HDA

public static final AudioControllerType HDA
Method Detail

values

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

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

valueOf

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

fromValue

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