public enum AudioCodecType extends java.lang.Enum<AudioCodecType>
IAudioAdapter.getAudioCodec()
.
Interface ID: {7B406301-F520-420C-9805-8CE11C086370}Enum Constant and Description |
---|
AD1980
An AD1980 AC'97 codec.
|
Null
null value.
|
SB16
SB16; this is the only option for the SB16 device.
|
STAC9221
A STAC9221 HDA codec.
|
STAC9700
A STAC9700 AC'97 codec.
|
Modifier and Type | Method and Description |
---|---|
static AudioCodecType |
fromValue(long v) |
static AudioCodecType |
fromValue(java.lang.String v) |
int |
value() |
static AudioCodecType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AudioCodecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioCodecType Null
public static final AudioCodecType SB16
public static final AudioCodecType STAC9700
public static final AudioCodecType AD1980
public static final AudioCodecType STAC9221
public static AudioCodecType[] values()
for (AudioCodecType c : AudioCodecType.values()) System.out.println(c);
public static AudioCodecType 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 AudioCodecType fromValue(long v)
public static AudioCodecType fromValue(java.lang.String v)