public enum AudioDriverType extends java.lang.Enum<AudioDriverType>
Enum Constant and Description |
---|
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).
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static AudioDriverType fromValue(long v)
public static AudioDriverType fromValue(java.lang.String v)