public static enum CodecSet.AudioCodecType extends java.lang.Enum<CodecSet.AudioCodecType>
Enum Constant and Description |
---|
AC_G722 |
AC_ILBC |
AC_ISAC |
AC_OPUS |
AC_PCMA |
AC_PCMU |
Modifier and Type | Method and Description |
---|---|
static CodecSet.AudioCodecType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodecSet.AudioCodecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodecSet.AudioCodecType AC_PCMA
public static final CodecSet.AudioCodecType AC_PCMU
public static final CodecSet.AudioCodecType AC_OPUS
public static final CodecSet.AudioCodecType AC_ISAC
public static final CodecSet.AudioCodecType AC_G722
public static final CodecSet.AudioCodecType AC_ILBC
public static CodecSet.AudioCodecType[] values()
for (CodecSet.AudioCodecType c : CodecSet.AudioCodecType.values()) System.out.println(c);
public static CodecSet.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 null