public enum TableRowStyle extends Enum<TableRowStyle>
The style of a table row of type rule.
| Enum Constant and Description |
|---|
HEAVY
A row of type rule and style heavy (heavily emphasized).
|
LIGHT
A row of type rule and style light.
|
NORMAL
A row of type rule and style normal.
|
STRONG
A row of type rule and style strong (emphasized).
|
UNKNOWN
An unknown, not set, style.
|
| Modifier and Type | Method and Description |
|---|---|
static TableRowStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableRowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableRowStyle UNKNOWN
An unknown, not set, style.
public static final TableRowStyle NORMAL
A row of type rule and style normal.
public static final TableRowStyle STRONG
A row of type rule and style strong (emphasized).
public static final TableRowStyle HEAVY
A row of type rule and style heavy (heavily emphasized).
public static final TableRowStyle LIGHT
A row of type rule and style light.
public static TableRowStyle[] values()
for (TableRowStyle c : TableRowStyle.values()) System.out.println(c);
public static TableRowStyle 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 © 2016–2017. All rights reserved.