Enum Constant and Description |
---|
AAudio
AAudio is an audio API introduced in the Android 8.0 release
|
CoreAudio
Core Audio is a low-level API for dealing with sound in Apple's macOS and iOS operating systems
|
NA
Invalid - information not available
|
OpenSLES
Open Sound Library for Embedded Systems (OpenSL ES) is a cross-platformand hardware-accelerated audio
API for 2D and 3D audio on Android
|
Pulse
PulseAudio is a sound server for desktop use commonly used on Linux systems
|
WASAPI
Windows Audio Session API (WASAPI)
|
WMME
Windows Multimedia Extensions (MME) - deprecated!
|
Modifier and Type | Method and Description |
---|---|
static HostAPI |
fromInt(int i) |
static HostAPI |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HostAPI[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostAPI NA
public static final HostAPI WMME
public static final HostAPI WASAPI
public static final HostAPI Pulse
public static final HostAPI CoreAudio
public static final HostAPI OpenSLES
public static final HostAPI AAudio
public static HostAPI[] values()
for (HostAPI c : HostAPI.values()) System.out.println(c);
public static HostAPI 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 static HostAPI fromInt(int i)