public enum TableStyleOptions extends Enum<TableStyleOptions>
Table
style.Enum Constant and Description |
---|
BANDED_COLUMNS
Show column stripe formatting for the table.
|
BANDED_ROWS
Show row stripe formatting for the table.
|
FIRST_COLUMN
Show the first column.
|
LAST_COLUMN
Show the last column.
|
Modifier and Type | Method and Description |
---|---|
static TableStyleOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStyleOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStyleOptions BANDED_COLUMNS
public static final TableStyleOptions BANDED_ROWS
public static final TableStyleOptions FIRST_COLUMN
public static final TableStyleOptions LAST_COLUMN
public static TableStyleOptions 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 nullpublic static TableStyleOptions[] values()
for (TableStyleOptions c : TableStyleOptions.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.