public static enum MessageWaypointListener.Waypoint extends Enum<MessageWaypointListener.Waypoint>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.