public static enum Call.CallStatus extends java.lang.Enum<Call.CallStatus>
| Enum Constant and Description |
|---|
CONNECTED
The call is answered.
|
DISCONNECTED
The call is terminated.
|
INITIATED
For the outgoing call, the call has dialed.
|
RINGING
For the outgoing call, the call is ringing the remote party.
|
| Modifier and Type | Method and Description |
|---|---|
static Call.CallStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Call.CallStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.CallStatus INITIATED
public static final Call.CallStatus RINGING
public static final Call.CallStatus CONNECTED
public static final Call.CallStatus DISCONNECTED
public static Call.CallStatus[] values()
for (Call.CallStatus c : Call.CallStatus.values()) System.out.println(c);
public static Call.CallStatus 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