Enum Constant and Description |
---|
ESTABLISHED
established
|
ESTABLISHING
establishing
|
HOLD
hold
|
INCOMING
incoming
|
REDIRECTING
redirecting
|
TERMINATED
terminated
|
TERMINATING
terminating
|
TRANSFER_ACCEPTED
transfer Accepted
|
TRANSFERRING
transferring
|
UNEXPECTED_VALUE
For CallState values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
Modifier and Type | Method and Description |
---|---|
static CallState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallState INCOMING
public static final CallState ESTABLISHING
public static final CallState ESTABLISHED
public static final CallState HOLD
public static final CallState TRANSFERRING
public static final CallState TRANSFER_ACCEPTED
public static final CallState REDIRECTING
public static final CallState TERMINATING
public static final CallState TERMINATED
public static final CallState UNKNOWN_FUTURE_VALUE
public static final CallState UNEXPECTED_VALUE
public static CallState[] values()
for (CallState c : CallState.values()) System.out.println(c);
public static CallState 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