public enum AudioControllerType extends java.lang.Enum<AudioControllerType>
{6389DCC9-4E60-4983-9418-299E602EFAFC}
Enum Constant and Description |
---|
AC97 |
HDA |
SB16 |
VirtioSound |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final AudioControllerType AC97
public static final AudioControllerType SB16
public static final AudioControllerType HDA
public static final AudioControllerType VirtioSound
public static AudioControllerType[] values()
for (AudioControllerType c : AudioControllerType.values()) System.out.println(c);
public static AudioControllerType 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 AudioControllerType fromValue(long v)
public static AudioControllerType fromValue(java.lang.String v)