com.sipresponse.flibblecallmgr
Enum EventReason

java.lang.Object
  extended by java.lang.Enum<EventReason>
      extended by com.sipresponse.flibblecallmgr.EventReason
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EventReason>

public enum EventReason
extends java.lang.Enum<EventReason>


Enum Constant Summary
CALL_BUSY
           
CALL_CANCELLED
           
CALL_DISCONNECT_LOCAL
           
CALL_DISCONNECT_REMOTE
           
CALL_FAILED_LOOP_DETECTED
           
CALL_FAILED_REQUEST
           
CALL_FAILURE_NETWORK
           
CALL_FAILURE_REJECTED
           
CALL_NORMAL
           
CALL_TEMPORARILY_UNAVAILABLE
           
CALL_TRANSFER_AS_CONTROLLER
           
CALL_TRANSFER_AS_TARGET
           
CALL_TRANSFER_AS_TRANSFEREE
           
CALL_UNHOLD
           
CALL_USER_NOT_FOUND
           
LINE_NETWORK
           
LINE_NORMAL
           
MEDIA_NORMAL
           
 
Method Summary
static EventReason valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventReason[] 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
 

Enum Constant Detail

CALL_NORMAL

public static final EventReason CALL_NORMAL

CALL_BUSY

public static final EventReason CALL_BUSY

CALL_TEMPORARILY_UNAVAILABLE

public static final EventReason CALL_TEMPORARILY_UNAVAILABLE

CALL_USER_NOT_FOUND

public static final EventReason CALL_USER_NOT_FOUND

CALL_FAILURE_NETWORK

public static final EventReason CALL_FAILURE_NETWORK

CALL_FAILURE_REJECTED

public static final EventReason CALL_FAILURE_REJECTED

CALL_FAILED_REQUEST

public static final EventReason CALL_FAILED_REQUEST

CALL_FAILED_LOOP_DETECTED

public static final EventReason CALL_FAILED_LOOP_DETECTED

CALL_TRANSFER_AS_CONTROLLER

public static final EventReason CALL_TRANSFER_AS_CONTROLLER

CALL_TRANSFER_AS_TRANSFEREE

public static final EventReason CALL_TRANSFER_AS_TRANSFEREE

CALL_TRANSFER_AS_TARGET

public static final EventReason CALL_TRANSFER_AS_TARGET

CALL_DISCONNECT_LOCAL

public static final EventReason CALL_DISCONNECT_LOCAL

CALL_DISCONNECT_REMOTE

public static final EventReason CALL_DISCONNECT_REMOTE

CALL_UNHOLD

public static final EventReason CALL_UNHOLD

CALL_CANCELLED

public static final EventReason CALL_CANCELLED

LINE_NORMAL

public static final EventReason LINE_NORMAL

LINE_NETWORK

public static final EventReason LINE_NETWORK

MEDIA_NORMAL

public static final EventReason MEDIA_NORMAL
Method Detail

values

public static final EventReason[] 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(EventReason c : EventReason.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static EventReason 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