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