public static enum Table.ColumnOrder extends 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(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(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 nullCopyright © 2005–2024 OpenHMS. All rights reserved.