public enum ListCommand extends java.lang.Enum<ListCommand>
| Enum Constant and Description |
|---|
AFTER_RENDER |
BEFORE_RENDER |
COL_HEADER |
ENUMERATE |
RENDER |
TBL_ADDONS |
TBL_FOOTER |
TBL_HEADING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
$
|
static ListCommand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListCommand ENUMERATE
public static final ListCommand TBL_HEADING
public static final ListCommand TBL_ADDONS
public static final ListCommand COL_HEADER
public static final ListCommand BEFORE_RENDER
public static final ListCommand RENDER
public static final ListCommand AFTER_RENDER
public static final ListCommand TBL_FOOTER
public static ListCommand[] values()
for (ListCommand c : ListCommand.values()) System.out.println(c);
public static ListCommand 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 toString()
toString in class java.lang.Enum<ListCommand>