|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<UserOption> com.adobe.connectpro.telephony.adaptor.UserOption
public enum UserOption
Phone user options.
Enum Constant Summary | |
---|---|
HOLD
Places the phone user on hold. |
|
MIC_LEVEL
Sets the volume level of a phone user input in the conference. |
|
MUTE
Mutes the phone user. |
|
PAUSE
Pauses the phone user's video. |
Field Summary | |
---|---|
static java.lang.String |
VALUE_HIGH
High volume level for MIC_LEVEL option |
static java.lang.String |
VALUE_LOW
Low volume level for MIC_LEVEL option |
static java.lang.String |
VALUE_NORMAL
Normal volume level for MIC_LEVEL option |
Method Summary | |
---|---|
java.lang.String |
toString()
String value of the enum constant |
static UserOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UserOption |
valueOfCustom(java.lang.String customName)
Returns the enum constant based on String value of the same |
static UserOption[] |
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 |
---|
public static final UserOption MUTE
public static final UserOption HOLD
public static final UserOption PAUSE
public static final UserOption MIC_LEVEL
Field Detail |
---|
public static final java.lang.String VALUE_HIGH
public static final java.lang.String VALUE_NORMAL
public static final java.lang.String VALUE_LOW
Method Detail |
---|
public static UserOption[] values()
for (UserOption c : UserOption.values()) System.out.println(c);
public static UserOption 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<UserOption>
public static UserOption valueOfCustom(java.lang.String customName)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |