public static enum QueueConfiguration.Type extends Enum<QueueConfiguration.Type>
Enum Constant and Description |
---|
ORDERED |
TOPIC_ROUND_ROBIN |
UNORDERED |
Modifier and Type | Method and Description |
---|---|
static QueueConfiguration.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueConfiguration.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueConfiguration.Type UNORDERED
public static final QueueConfiguration.Type ORDERED
public static final QueueConfiguration.Type TOPIC_ROUND_ROBIN
public static QueueConfiguration.Type[] values()
for (QueueConfiguration.Type c : QueueConfiguration.Type.values()) System.out.println(c);
public static QueueConfiguration.Type 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 nullCopyright © 2017 The Apache Software Foundation. All rights reserved.