|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MessageWaypointListener.Waypoint>
com.neeve.sma.MessageWaypointListener.Waypoint
public static 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 |
---|
public static final MessageWaypointListener.Waypoint o
public static final MessageWaypointListener.Waypoint s1
public static final MessageWaypointListener.Waypoint s2
public static final MessageWaypointListener.Waypoint w1
public static final MessageWaypointListener.Waypoint w2
public static final MessageWaypointListener.Waypoint r
public static final MessageWaypointListener.Waypoint d1
public static final MessageWaypointListener.Waypoint d2
public static final MessageWaypointListener.Waypoint i
Method Detail |
---|
public static MessageWaypointListener.Waypoint[] values()
for (MessageWaypointListener.Waypoint c : MessageWaypointListener.Waypoint.values()) System.out.println(c);
public static MessageWaypointListener.Waypoint valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |