public enum ChannelSide extends java.lang.Enum<ChannelSide>
| Enum Constant and Description |
|---|
COLLOCATED
Handles receiving events from a producer and sending them to consumers (no bindings).
|
CONSUMER
Handles receiving events from a binding and sending them to consumers.
|
PRODUCER
Handles receiving events from producers and sending them to a binding.
|
| Modifier and Type | Method and Description |
|---|---|
static ChannelSide |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChannelSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelSide CONSUMER
public static final ChannelSide PRODUCER
public static final ChannelSide COLLOCATED
public static ChannelSide[] values()
for (ChannelSide c : ChannelSide.values()) System.out.println(c);
public static ChannelSide 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