public static enum Conference.AudioCodec extends Enum<Conference.AudioCodec>
Enum Constant and Description |
---|
CN
Comfort Noise
|
ISAC
internet Speech Audio Codec
|
OPUS
The IETF Opus codec
|
PCMA
Pulse Code Modulation a-law
|
PCMU
Pulse Code Modulation μ-law
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Serialize value
|
static Conference.AudioCodec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.AudioCodec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.AudioCodec OPUS
public static final Conference.AudioCodec ISAC
public static final Conference.AudioCodec PCMU
public static final Conference.AudioCodec PCMA
public static final Conference.AudioCodec CN
public static Conference.AudioCodec[] values()
for (Conference.AudioCodec c : Conference.AudioCodec.values()) System.out.println(c);
public static Conference.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 nullpublic String toString()
toString
in class Enum<Conference.AudioCodec>
Copyright © 2015. All rights reserved.