public enum ActiveCallChange extends java.lang.Enum<ActiveCallChange>
Enum Constant and Description |
---|
DoNothing
Do not do anything with all other active calls
Leaves all other calls untouched and leads to mix their audio.
|
HoldOthers
Holds all other active calls
Holds all other calls and prevent audio mixing.
|
Modifier and Type | Method and Description |
---|---|
static ActiveCallChange |
fromInt(int i) |
static ActiveCallChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActiveCallChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveCallChange HoldOthers
public static final ActiveCallChange DoNothing
public static ActiveCallChange[] values()
for (ActiveCallChange c : ActiveCallChange.values()) System.out.println(c);
public static ActiveCallChange 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 nullpublic static ActiveCallChange fromInt(int i)