public enum AudioOutputDeviceType extends Enum<AudioOutputDeviceType>
Enum Constant and Description |
---|
AUDIO_2F2R |
AUDIO_3F2R |
AUDIO_5_1 |
AUDIO_6_1 |
AUDIO_7_1 |
AUDIO_ERROR |
AUDIO_MONO |
AUDIO_SPDIF |
AUDIO_STEREO |
Modifier and Type | Method and Description |
---|---|
int |
intValue() |
static AudioOutputDeviceType |
valueOf(int intValue)
Get an enumerated value for a native value.
|
static AudioOutputDeviceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioOutputDeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioOutputDeviceType AUDIO_ERROR
public static final AudioOutputDeviceType AUDIO_MONO
public static final AudioOutputDeviceType AUDIO_STEREO
public static final AudioOutputDeviceType AUDIO_2F2R
public static final AudioOutputDeviceType AUDIO_3F2R
public static final AudioOutputDeviceType AUDIO_5_1
public static final AudioOutputDeviceType AUDIO_6_1
public static final AudioOutputDeviceType AUDIO_7_1
public static final AudioOutputDeviceType AUDIO_SPDIF
public static AudioOutputDeviceType[] values()
for (AudioOutputDeviceType c : AudioOutputDeviceType.values()) System.out.println(c);
public static AudioOutputDeviceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic int intValue()
public static AudioOutputDeviceType valueOf(int intValue)
intValue
- native valuenull
if the native value is not recognisedCopyright © 2009–2014 Caprica Software Limited. All rights reserved.