org.csapi.jr.se.cc
Class CallMonitorMode

java.lang.Object
  |
  +--org.csapi.jr.se.cc.CallMonitorMode
All Implemented Interfaces:
java.io.Serializable

public final class CallMonitorMode
extends java.lang.Object
implements java.io.Serializable

Defines the mode that the call will monitor for events, or the mode that the call is in following a detected event.

See Also:
Serialized Form

Field Summary
static int _CALL_MONITOR_MODE_DO_NOT_MONITOR
          Do not monitor for the event
static int _CALL_MONITOR_MODE_INTERRUPT
          The call event is intercepted by the call control service and call processing is interrupted.
static int _CALL_MONITOR_MODE_NOTIFY
          The call event is detected by the call control service but not intercepted.
static org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_DO_NOT_MONITOR
          Do not monitor for the event
static org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_INTERRUPT
          The call event is intercepted by the call control service and call processing is interrupted.
static org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_NOTIFY
          The call event is detected by the call control service but not intercepted.
 
Method Summary
 boolean equals(java.lang.Object o)
          Indicates whether some other object is 'equal to' this one.
static org.csapi.jr.se.cc.CallMonitorMode getObject(int value)
          Accepts values in the range of 0 to 2
 int getValue()
          Number representing enum type
 java.lang.String getValueText()
          getValueText method, overrides the getValueText() method in class java.lang.Object
 int hashCode()
          Returns a hashcode value for the object.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_CALL_MONITOR_MODE_INTERRUPT

public static final int _CALL_MONITOR_MODE_INTERRUPT
The call event is intercepted by the call control service and call processing is interrupted. The application is notified of the event and call processing resumes following an appropriate API call or network event (such as a call release)

See Also:
Constant Field Values

CALL_MONITOR_MODE_INTERRUPT

public static final org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_INTERRUPT
The call event is intercepted by the call control service and call processing is interrupted. The application is notified of the event and call processing resumes following an appropriate API call or network event (such as a call release)


_CALL_MONITOR_MODE_NOTIFY

public static final int _CALL_MONITOR_MODE_NOTIFY
The call event is detected by the call control service but not intercepted. The application is notified of the event and call processing continues

See Also:
Constant Field Values

CALL_MONITOR_MODE_NOTIFY

public static final org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_NOTIFY
The call event is detected by the call control service but not intercepted. The application is notified of the event and call processing continues


_CALL_MONITOR_MODE_DO_NOT_MONITOR

public static final int _CALL_MONITOR_MODE_DO_NOT_MONITOR
Do not monitor for the event

See Also:
Constant Field Values

CALL_MONITOR_MODE_DO_NOT_MONITOR

public static final org.csapi.jr.se.cc.CallMonitorMode CALL_MONITOR_MODE_DO_NOT_MONITOR
Do not monitor for the event

Method Detail

getValue

public int getValue()
Number representing enum type

Returns:
int number representing type of object, this is defined within the class

getValueText

public java.lang.String getValueText()
getValueText method, overrides the getValueText() method in class java.lang.Object

Returns:
String The stringified version of the CallMonitorMode object

getObject

public static org.csapi.jr.se.cc.CallMonitorMode getObject(int value)
                                                    throws InvalidEnumValueException
Accepts values in the range of 0 to 2

Parameters:
value - number representing type of object, this is defined within the class
Throws:
InvalidEnumValueException - thrown if invalid value is passed into method

equals

public boolean equals(java.lang.Object o)
Indicates whether some other object is 'equal to' this one.

Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Returns a hashcode value for the object.

Overrides:
hashCode in class java.lang.Object