public static enum Table.ColumnOrder extends java.lang.Enum<Table.ColumnOrder>
| Enum Constant and Description |
|---|
DATA
columns are ordered based on the order of the data in the table (this
order does not change as columns are added to the table).
|
DISPLAY
columns are ordered based on the "display" order (this order can be
changed arbitrarily)
|
| Modifier and Type | Method and Description |
|---|---|
static Table.ColumnOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Table.ColumnOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.ColumnOrder DATA
public static final Table.ColumnOrder DISPLAY
public static Table.ColumnOrder[] values()
for (Table.ColumnOrder c : Table.ColumnOrder.values()) System.out.println(c);
public static Table.ColumnOrder 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