public static enum QueueDescription.Type extends Enum<QueueDescription.Type>
| Enum Constant and Description |
|---|
BURST
Support burst.
|
MAX
Support max rate.
|
MIN
Support min rate.
|
PRIORITY
Support priority.
|
| Modifier and Type | Method and Description |
|---|---|
static QueueDescription.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueDescription.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueDescription.Type MIN
public static final QueueDescription.Type MAX
public static final QueueDescription.Type PRIORITY
public static final QueueDescription.Type BURST
public static QueueDescription.Type[] values()
for (QueueDescription.Type c : QueueDescription.Type.values()) System.out.println(c);
public static QueueDescription.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 null