public static enum QueueBuilder.LeaderLocator extends Enum<QueueBuilder.LeaderLocator>
| Enum Constant and Description |
|---|
clientLocal
Deploy on the node we are connected to.
|
minLeaders
Deploy on the node with the fewest queue leaders.
|
random
Deploy on a random node.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Return the value.
|
static QueueBuilder.LeaderLocator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueBuilder.LeaderLocator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueBuilder.LeaderLocator minLeaders
public static final QueueBuilder.LeaderLocator clientLocal
public static final QueueBuilder.LeaderLocator random
public static QueueBuilder.LeaderLocator[] values()
for (QueueBuilder.LeaderLocator c : QueueBuilder.LeaderLocator.values()) System.out.println(c);
public static QueueBuilder.LeaderLocator 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 String getValue()