public static enum QueueInfo.Type extends java.lang.Enum<QueueInfo.Type>
Enum Constant and Description |
---|
FULL
Supports burst and priority as well as min and max rates.
|
MINMAX
Only support min and max rates.
|
Modifier and Type | Method and Description |
---|---|
static QueueInfo.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueueInfo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueInfo.Type FULL
public static final QueueInfo.Type MINMAX
public static QueueInfo.Type[] values()
for (QueueInfo.Type c : QueueInfo.Type.values()) System.out.println(c);
public static QueueInfo.Type 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 null