public static enum MeetingItem.AudioType extends java.lang.Enum<MeetingItem.AudioType>
Enum Constant and Description |
---|
AUDIO_TYPE_TELEPHONY
Telephone.
|
AUDIO_TYPE_THIRD_PARTY_AUDIO
The third party audio.
|
AUDIO_TYPE_VOIP
VoIP.
|
AUDIO_TYPE_VOIP_AND_TELEPHONEY
VoIP and telephone.
|
Modifier and Type | Method and Description |
---|---|
static MeetingItem.AudioType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingItem.AudioType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingItem.AudioType AUDIO_TYPE_VOIP
public static final MeetingItem.AudioType AUDIO_TYPE_TELEPHONY
public static final MeetingItem.AudioType AUDIO_TYPE_VOIP_AND_TELEPHONEY
public static final MeetingItem.AudioType AUDIO_TYPE_THIRD_PARTY_AUDIO
public static MeetingItem.AudioType[] values()
for (MeetingItem.AudioType c : MeetingItem.AudioType.values()) System.out.println(c);
public static MeetingItem.AudioType 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