|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AudioDriverType>
org.virtualbox_5_0.AudioDriverType
public enum AudioDriverType
Host audio driver type. Interface ID: {4BCC3D73-C2FE-40DB-B72F-0C2CA9D68496}
Enum Constant Summary | |
---|---|
ALSA
Advanced Linux Sound Architecture (Linux hosts only). |
|
CoreAudio
CoreAudio (Mac hosts only). |
|
DirectSound
DirectSound (Windows hosts only). |
|
MMPM
Reserved for historical reasons. |
|
Null
Null value, also means "dummy audio driver". |
|
OSS
Open Sound System (Linux / Unix hosts only). |
|
Pulse
PulseAudio (Linux hosts only). |
|
SolAudio
Solaris audio (Solaris hosts only, not supported at the moment). |
|
WinMM
Windows multimedia (Windows hosts only, not supported at the moment). |
Method Summary | |
---|---|
static AudioDriverType |
fromValue(long v)
|
static AudioDriverType |
fromValue(java.lang.String v)
|
int |
value()
|
static AudioDriverType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AudioDriverType[] |
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 |
---|
public static final AudioDriverType Null
public static final AudioDriverType WinMM
public static final AudioDriverType OSS
public static final AudioDriverType ALSA
public static final AudioDriverType DirectSound
public static final AudioDriverType CoreAudio
public static final AudioDriverType MMPM
public static final AudioDriverType Pulse
public static final AudioDriverType SolAudio
Method Detail |
---|
public static AudioDriverType[] values()
for (AudioDriverType c : AudioDriverType.values()) System.out.println(c);
public static AudioDriverType 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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static AudioDriverType fromValue(long v)
public static AudioDriverType fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |