public static enum TTable.Align extends Enum<TTable.Align>
| Enum Constant and Description |
|---|
LEFT
left-alignment
|
MIDDLE
middle-alignment
|
RIGHT
right-alignment
|
| Modifier and Type | Method and Description |
|---|---|
static TTable.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TTable.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TTable.Align LEFT
public static final TTable.Align RIGHT
public static final TTable.Align MIDDLE
public static TTable.Align[] values()
for (TTable.Align c : TTable.Align.values()) System.out.println(c);
public static TTable.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 nullCopyright © 2011–2020 The Apache Software Foundation. All rights reserved.