public static enum QueueBuilder.LeaderLocator extends java.lang.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 |
|---|---|
java.lang.String |
getValue()
Return the value.
|
static QueueBuilder.LeaderLocator |
valueOf(java.lang.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(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 nullpublic java.lang.String getValue()