public enum AudioCodec extends Enum<AudioCodec>
Enum Constant and Description |
---|
G722
ITU-T standard 7 kHz Wideband audio codec.
|
ISAC
Internet speech audio codec.
|
OPUS
Lossy audio coding format.
|
PCMA
ITU-T standard for audio companding.
|
PCMU
ITU-T standard for audio companding.
|
Modifier and Type | Method and Description |
---|---|
static AudioCodec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioCodec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioCodec ISAC
public static final AudioCodec OPUS
public static final AudioCodec PCMA
public static final AudioCodec PCMU
public static final AudioCodec G722
public static AudioCodec[] values()
for (AudioCodec c : AudioCodec.values()) System.out.println(c);
public static AudioCodec 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 null