org.virtualbox_4_1
Enum AudioControllerType
java.lang.Object
java.lang.Enum<AudioControllerType>
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}
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 |
AC97
public static final AudioControllerType AC97
SB16
public static final AudioControllerType SB16
HDA
public static final AudioControllerType HDA
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)