com.sipresponse.flibblecallmgr
Enum EventCode
java.lang.Object
java.lang.Enum<EventCode>
com.sipresponse.flibblecallmgr.EventCode
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EventCode>
public enum EventCode
- extends java.lang.Enum<EventCode>
|
Method Summary |
static EventCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EventCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CALL_IDLE
public static final EventCode CALL_IDLE
CALL_TRYING
public static final EventCode CALL_TRYING
CALL_INCOMING_INVITE
public static final EventCode CALL_INCOMING_INVITE
CALL_REMOTE_RINGING
public static final EventCode CALL_REMOTE_RINGING
CALL_LOCAL_RINGING
public static final EventCode CALL_LOCAL_RINGING
CALL_CONNECTED
public static final EventCode CALL_CONNECTED
CALL_HELD_BY_REMOTE_PARTY
public static final EventCode CALL_HELD_BY_REMOTE_PARTY
CALL_HOLDING_REMOTE_PARTY
public static final EventCode CALL_HOLDING_REMOTE_PARTY
CALL_BIDIRECTIONAL_HOLD
public static final EventCode CALL_BIDIRECTIONAL_HOLD
CALL_FAILED
public static final EventCode CALL_FAILED
CALL_DISCONNECTED
public static final EventCode CALL_DISCONNECTED
CALL_TRANSFER
public static final EventCode CALL_TRANSFER
CALL_TRANSFER_FAILED
public static final EventCode CALL_TRANSFER_FAILED
CALL_HOLD_FAILED
public static final EventCode CALL_HOLD_FAILED
LINE_UNREGISTERED
public static final EventCode LINE_UNREGISTERED
LINE_UNREGISTERING
public static final EventCode LINE_UNREGISTERING
LINE_UNREGISTER_FAILED
public static final EventCode LINE_UNREGISTER_FAILED
LINE_REGISTERING
public static final EventCode LINE_REGISTERING
LINE_REGISTERED
public static final EventCode LINE_REGISTERED
LINE_REGISTER_FAILED
public static final EventCode LINE_REGISTER_FAILED
LINE_PROVISIONED
public static final EventCode LINE_PROVISIONED
MEDIA_END_OF_FILE
public static final EventCode MEDIA_END_OF_FILE
MEDIA_DTMF
public static final EventCode MEDIA_DTMF
values
public static final EventCode[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(EventCode c : EventCode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static EventCode valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name