public static enum Table.Align extends Enum<Table.Align>
Enum Constant and Description |
---|
CENTER
Center column alignment.
|
LEFT
Left column alignment.
|
RIGHT
Right column alignment.
|
Modifier and Type | Method and Description |
---|---|
Table.Align |
convertStringToAlign(String string) |
String |
toString() |
static Table.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.Align LEFT
public static final Table.Align CENTER
public static final Table.Align RIGHT
public static Table.Align[] values()
for (Table.Align c : Table.Align.values()) System.out.println(c);
public static Table.Align 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 String toString()
toString
in class Enum<Table.Align>
public Table.Align convertStringToAlign(String string)
Copyright © 2019 Vaadin Ltd. All rights reserved.