public static enum TableCell.VerticalAlign extends java.lang.Enum<TableCell.VerticalAlign>
| Enum Constant and Description |
|---|
baseline
The baseline is the "imaginary line" which most letters "sit" on, in
a line of text.
|
bottom
Bottom-align content
|
middle
Center-align content
|
top
Top-align content
|
| Modifier and Type | Method and Description |
|---|---|
static TableCell.VerticalAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableCell.VerticalAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCell.VerticalAlign top
public static final TableCell.VerticalAlign bottom
public static final TableCell.VerticalAlign middle
public static final TableCell.VerticalAlign baseline
public static TableCell.VerticalAlign[] values()
for (TableCell.VerticalAlign c : TableCell.VerticalAlign.values()) System.out.println(c);
public static TableCell.VerticalAlign valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null