public enum CallLineStatus extends java.lang.Enum<CallLineStatus>
Enum Constant and Description |
---|
Active
The call is established
|
Dialing
The call is in preparation state - the peer is not yet notified for its presence
|
EarlyMedia
The call is in early media state
|
Failed
The call has failed
|
Held
The call is put on hold
|
NA
Invalid - information not available
|
Ringing
Ringing - the peer is notified for the call and is waited of action
|
Terminated
The call is terminated/disconnected
|
Modifier and Type | Method and Description |
---|---|
static CallLineStatus |
fromInt(int i) |
static CallLineStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallLineStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallLineStatus NA
public static final CallLineStatus Dialing
public static final CallLineStatus Failed
public static final CallLineStatus Ringing
public static final CallLineStatus Active
public static final CallLineStatus Held
public static final CallLineStatus EarlyMedia
public static final CallLineStatus Terminated
public static CallLineStatus[] values()
for (CallLineStatus c : CallLineStatus.values()) System.out.println(c);
public static CallLineStatus 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 CallLineStatus fromInt(int i)