com.adobe.connectpro.telephony.adaptor
Enum ConferenceOption

java.lang.Object
  extended by java.lang.Enum<ConferenceOption>
      extended by com.adobe.connectpro.telephony.adaptor.ConferenceOption
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConferenceOption>

public enum ConferenceOption
extends java.lang.Enum<ConferenceOption>

Conference basic options


Enum Constant Summary
LOCK
          Locks the conference such that no dial-ins are permitted.
MUSIC
          Play music if conference is not in session and all the users are on hold.
MUSIC_ON_HOLD
          Play music to a telephony user when that user is put on hold.
MUTE
          Whether all the phone users of type participant of the conference are on mute except moderator.
MUTE_USERS_ON_ENTRY
          To mute all new phone users by default when they join the conference.
TALKER_NOTIFY
          Send notification to Connect Pro when a user is speaking.
 
Method Summary
 java.lang.String toString()
          String value of the enum constant
static ConferenceOption valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConferenceOption valueOfCustom(java.lang.String customName)
          Returns the enum constant based on String value of the same
static ConferenceOption[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MUSIC

public static final ConferenceOption MUSIC
Play music if conference is not in session and all the users are on hold. This is an on/off option with values 'true', 'false'


MUSIC_ON_HOLD

public static final ConferenceOption MUSIC_ON_HOLD
Play music to a telephony user when that user is put on hold. This is an on/off option with values 'true', 'false'


MUTE

public static final ConferenceOption MUTE
Whether all the phone users of type participant of the conference are on mute except moderator. This also means that all any new participant users are also muted. Also it might not be possible to individually unmute a phone user when this option is on. This is an on/off option with values 'true', 'false'


MUTE_USERS_ON_ENTRY

public static final ConferenceOption MUTE_USERS_ON_ENTRY
To mute all new phone users by default when they join the conference. The use case is to not add noise to the conference in case they are joining to listen. Phone users could umute themselves later depending on the mute/unmute capability. This is an on/off option with values 'true', 'false'


TALKER_NOTIFY

public static final ConferenceOption TALKER_NOTIFY
Send notification to Connect Pro when a user is speaking. This is an on/off option with values 'true', 'false'


LOCK

public static final ConferenceOption LOCK
Locks the conference such that no dial-ins are permitted. This is an on/off option with values 'true', 'false'

Method Detail

values

public static ConferenceOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ConferenceOption c : ConferenceOption.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ConferenceOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
String value of the enum constant

Overrides:
toString in class java.lang.Enum<ConferenceOption>

valueOfCustom

public static ConferenceOption valueOfCustom(java.lang.String customName)
Returns the enum constant based on String value of the same