public static enum TableCell.Alignment extends Enum<TableCell.Alignment>
| Modifier and Type | Method and Description |
|---|---|
static TableCell.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableCell.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCell.Alignment LEFT
public static final TableCell.Alignment CENTER
public static final TableCell.Alignment RIGHT
public static TableCell.Alignment[] values()
for (TableCell.Alignment c : TableCell.Alignment.values()) System.out.println(c);
public static TableCell.Alignment 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 © 2019. All rights reserved.