public enum TableCellBorderStyle extends Enum<TableCellBorderStyle>
Enum Constant and Description |
---|
DoubleLine
There is a single space of separation between the cells, drawn as a double line
|
EmptySpace
There is a single space of separation between the cells, kept empty
|
None
There is no separation between table cells, they are drawn immediately next to each other
|
SingleLine
There is a single space of separation between the cells, drawn as a single line
|
Modifier and Type | Method and Description |
---|---|
static TableCellBorderStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableCellBorderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCellBorderStyle None
public static final TableCellBorderStyle SingleLine
public static final TableCellBorderStyle DoubleLine
public static final TableCellBorderStyle EmptySpace
public static TableCellBorderStyle[] values()
for (TableCellBorderStyle c : TableCellBorderStyle.values()) System.out.println(c);
public static TableCellBorderStyle 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. All rights reserved.