public static enum Queue.QueueColumn extends java.lang.Enum<Queue.QueueColumn>
| Enum Constant and Description |
|---|
DSCP |
EXTERNALIDS |
OTHERCONFIG |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
columnName()
Returns the table column name for QueueColumn.
|
static Queue.QueueColumn |
valueOf(java.lang.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(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 columnName()