public static enum PaddedTextType.Alignment extends Enum<PaddedTextType.Alignment>
| Enum Constant and Description |
|---|
CENTER
The field is center aligned; padding is applied evenly before and after the value.
|
LEFT
The field is left aligned; padding is applied after the value.
|
RIGHT
The field is right aligned; padding is applied before the value.
|
| Modifier and Type | Method and Description |
|---|---|
static PaddedTextType.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaddedTextType.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaddedTextType.Alignment LEFT
public static final PaddedTextType.Alignment RIGHT
public static final PaddedTextType.Alignment CENTER
public static PaddedTextType.Alignment[] values()
for (PaddedTextType.Alignment c : PaddedTextType.Alignment.values()) System.out.println(c);
public static PaddedTextType.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 © 2021 Actian Corporation. All rights reserved.