public static enum Queue.QueueColumn extends Enum<Queue.QueueColumn>
| Enum Constant and Description |
|---|
DSCP |
EXTERNALIDS |
OTHERCONFIG |
| Modifier and Type | Method and Description |
|---|---|
String |
columnName()
Returns the table column name for QueueColumn.
|
static Queue.QueueColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Queue.QueueColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Queue.QueueColumn DSCP
public static final Queue.QueueColumn OTHERCONFIG
public static final Queue.QueueColumn EXTERNALIDS
public static Queue.QueueColumn[] values()
for (Queue.QueueColumn c : Queue.QueueColumn.values()) System.out.println(c);
public static Queue.QueueColumn 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 columnName()