com.neeve.sma
Enum MessageWaypointListener.Waypoint

java.lang.Object
  extended by java.lang.Enum<MessageWaypointListener.Waypoint>
      extended by com.neeve.sma.MessageWaypointListener.Waypoint
All Implemented Interfaces:
Serializable, Comparable<MessageWaypointListener.Waypoint>
Enclosing interface:
MessageWaypointListener

public static enum MessageWaypointListener.Waypoint
extends Enum<MessageWaypointListener.Waypoint>

Enumerates the various messaging waypoints


Enum Constant Summary
d1
          Point just before inbound message deserialization begins
d2
          Point just after inbound message deserialization completes
i
          Point just before message is dispatched to the application
o
          Point just before an outbound message is sent
r
          Point just after an inbound message is received from the messaging provider
s1
          Point just before outbound message serialization begins
s2
          Point just after outbound message serialization completes
w1
          Point just before the messaging provider specific publish/send is invoked
w2
          Point just after the messaging provider specific publish/send is complete
 
Method Summary
static MessageWaypointListener.Waypoint valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MessageWaypointListener.Waypoint[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

o

public static final MessageWaypointListener.Waypoint o
Point just before an outbound message is sent


s1

public static final MessageWaypointListener.Waypoint s1
Point just before outbound message serialization begins


s2

public static final MessageWaypointListener.Waypoint s2
Point just after outbound message serialization completes


w1

public static final MessageWaypointListener.Waypoint w1
Point just before the messaging provider specific publish/send is invoked


w2

public static final MessageWaypointListener.Waypoint w2
Point just after the messaging provider specific publish/send is complete


r

public static final MessageWaypointListener.Waypoint r
Point just after an inbound message is received from the messaging provider


d1

public static final MessageWaypointListener.Waypoint d1
Point just before inbound message deserialization begins


d2

public static final MessageWaypointListener.Waypoint d2
Point just after inbound message deserialization completes


i

public static final MessageWaypointListener.Waypoint i
Point just before message is dispatched to the application

Method Detail

values

public static MessageWaypointListener.Waypoint[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MessageWaypointListener.Waypoint c : MessageWaypointListener.Waypoint.values())
    System.out.println(c);

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

valueOf

public static MessageWaypointListener.Waypoint valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2015 Neeve Research, LLC. All Rights Reserved.