public enum RoutingFlag extends Enum<RoutingFlag>
Enum Constant and Description |
---|
ClusterWait |
Committed |
Conversational |
DeliverLocalOnly |
FromPeer |
FromRemote |
HasModelAdapter |
NonGlobalRouting
This message should not be globally routed
|
PriorityProcessing
This message has priority and should be processed by the bus before other messages, if other messages are queued
|
RetryDelivery |
Modifier and Type | Method and Description |
---|---|
abstract int |
flag()
Returns the integer representing the flag
|
static RoutingFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutingFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutingFlag NonGlobalRouting
public static final RoutingFlag PriorityProcessing
public static final RoutingFlag Conversational
public static final RoutingFlag FromRemote
public static final RoutingFlag Committed
public static final RoutingFlag HasModelAdapter
public static final RoutingFlag RetryDelivery
public static final RoutingFlag ClusterWait
public static final RoutingFlag FromPeer
public static final RoutingFlag DeliverLocalOnly
public static RoutingFlag[] values()
for (RoutingFlag c : RoutingFlag.values()) System.out.println(c);
public static RoutingFlag 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 nullpublic abstract int flag()
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.