public enum TableRenderingOrder extends Enum<TableRenderingOrder>
Enum Constant and Description |
---|
COLUMNS_FIRST
Draw columns, then rows.
|
ROWS_FIRST
Draw rows, then columns.
|
Modifier and Type | Method and Description |
---|---|
static TableRenderingOrder |
fromOrdinal(int ordinal) |
int |
value() |
static TableRenderingOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableRenderingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableRenderingOrder COLUMNS_FIRST
public static final TableRenderingOrder ROWS_FIRST
public static final TableRenderingOrder fromOrdinal(int ordinal)
public int value()
public static TableRenderingOrder valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static TableRenderingOrder[] values()
for (TableRenderingOrder c : TableRenderingOrder.values()) System.out.println(c);