public enum InboundDispatchMode extends java.lang.Enum<InboundDispatchMode>
| Enum Constant and Description |
|---|
PUBLISH_TO_MESSAGE_ID_RECEIVE_ADDRESS
Message should be published to specific address for message id.
|
PUBLISH_TO_VERTICLE_RECEIVE_ADDRESS
Message should be published to verticle base address for received messages
|
SEND_TO_MESSAGE_ID_RECEIVE_ADDRESS
Message should be sent to specific address for message id.
|
SEND_TO_VERTICLE_RECEIVE_ADDRESS
Message should be sent to verticle base address for received messages
|
| Modifier and Type | Method and Description |
|---|---|
static InboundDispatchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InboundDispatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InboundDispatchMode PUBLISH_TO_VERTICLE_RECEIVE_ADDRESS
public static final InboundDispatchMode SEND_TO_VERTICLE_RECEIVE_ADDRESS
public static final InboundDispatchMode PUBLISH_TO_MESSAGE_ID_RECEIVE_ADDRESS
public static final InboundDispatchMode SEND_TO_MESSAGE_ID_RECEIVE_ADDRESS
public static InboundDispatchMode[] values()
for (InboundDispatchMode c : InboundDispatchMode.values()) System.out.println(c);
public static InboundDispatchMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null