com.adobe.connectpro.telephony.adaptor
Enum AnnouncementOption

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

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

Conference announcement options


Enum Constant Summary
DEPARTURE
          When a new telephony user leaves the conference.
END_OF_MEETING
          When the audio conference ends.
ENTRY
          When a new telephony user joins the conference.
MEETING_EXTENSION
          When the audio conference time is extended.
 
Field Summary
static java.lang.String VALUE_BEEP
           
static java.lang.String VALUE_BEEP_NAME
           
static java.lang.String VALUE_SILENT
           
 
Method Summary
 java.lang.String toString()
          String value of the enum constant
static AnnouncementOption valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AnnouncementOption valueOfCustom(java.lang.String customName)
          Returns the enum constant based on String value of the same
static AnnouncementOption[] 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

ENTRY

public static final AnnouncementOption ENTRY
When a new telephony user joins the conference. Possible values 'Silent', 'Beep only', 'Beep plus name'


DEPARTURE

public static final AnnouncementOption DEPARTURE
When a new telephony user leaves the conference. Possible values 'Silent', 'Beep only', 'Beep plus name'


END_OF_MEETING

public static final AnnouncementOption END_OF_MEETING
When the audio conference ends. This is an on/off option with values 'true', 'false'


MEETING_EXTENSION

public static final AnnouncementOption MEETING_EXTENSION
When the audio conference time is extended. This is an on/off option with value 'true', 'false'

Field Detail

VALUE_SILENT

public static final java.lang.String VALUE_SILENT
See Also:
Constant Field Values

VALUE_BEEP

public static final java.lang.String VALUE_BEEP
See Also:
Constant Field Values

VALUE_BEEP_NAME

public static final java.lang.String VALUE_BEEP_NAME
See Also:
Constant Field Values
Method Detail

values

public static AnnouncementOption[] 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 (AnnouncementOption c : AnnouncementOption.values())
    System.out.println(c);

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

valueOf

public static AnnouncementOption 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<AnnouncementOption>

valueOfCustom

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