org.jdiameter.client.api.fsm
Enum EventTypes

java.lang.Object
  extended by java.lang.Enum<EventTypes>
      extended by org.jdiameter.client.api.fsm.EventTypes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EventTypes>

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

This enumeration describe all fsm events


Enum Constant Summary
CEA_EVENT
          Stack received CEA message
CER_EVENT
          Stack received CER message
CONNECT_EVENT
          Connect event
DISCONNECT_EVENT
          Disconnect event
DPA_EVENT
          Stack received DPA message
DPR_EVENT
          Stack received DPR message
DWA_EVENT
          Stack received DWA message
DWR_EVENT
          Stack received DWR message
INTERNAL_ERROR
          Internal error during processing event
RECEIVE_MSG_EVENT
          Stack received Application message
SEND_MSG_EVENT
          App send message to network
START_EVENT
          Start fsm event
STOP_EVENT
          Stop fsm event
TIMEOUT_EVENT
          Operation timeout event
 
Method Summary
 boolean isHighPriority()
           
static EventTypes valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventTypes[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONNECT_EVENT

public static final EventTypes CONNECT_EVENT
Connect event


DISCONNECT_EVENT

public static final EventTypes DISCONNECT_EVENT
Disconnect event


TIMEOUT_EVENT

public static final EventTypes TIMEOUT_EVENT
Operation timeout event


START_EVENT

public static final EventTypes START_EVENT
Start fsm event


STOP_EVENT

public static final EventTypes STOP_EVENT
Stop fsm event


INTERNAL_ERROR

public static final EventTypes INTERNAL_ERROR
Internal error during processing event


CER_EVENT

public static final EventTypes CER_EVENT
Stack received CER message


CEA_EVENT

public static final EventTypes CEA_EVENT
Stack received CEA message


DPR_EVENT

public static final EventTypes DPR_EVENT
Stack received DPR message


DPA_EVENT

public static final EventTypes DPA_EVENT
Stack received DPA message


DWR_EVENT

public static final EventTypes DWR_EVENT
Stack received DWR message


DWA_EVENT

public static final EventTypes DWA_EVENT
Stack received DWA message


SEND_MSG_EVENT

public static final EventTypes SEND_MSG_EVENT
App send message to network


RECEIVE_MSG_EVENT

public static final EventTypes RECEIVE_MSG_EVENT
Stack received Application message

Method Detail

values

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

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

valueOf

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

isHighPriority

public boolean isHighPriority()


Copyright © 2008. All Rights Reserved.