public enum TableDisplayAlignmentProvider extends java.lang.Enum<TableDisplayAlignmentProvider>
| Enum Constant and Description |
|---|
CENTER_ALIGNMENT |
LEFT_ALIGNMENT |
RIGHT_ALIGNMENT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
java.lang.String |
toString() |
static TableDisplayAlignmentProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableDisplayAlignmentProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableDisplayAlignmentProvider CENTER_ALIGNMENT
public static final TableDisplayAlignmentProvider LEFT_ALIGNMENT
public static final TableDisplayAlignmentProvider RIGHT_ALIGNMENT
public static TableDisplayAlignmentProvider[] values()
for (TableDisplayAlignmentProvider c : TableDisplayAlignmentProvider.values()) System.out.println(c);
public static TableDisplayAlignmentProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getCode()
public java.lang.String toString()
toString in class java.lang.Enum<TableDisplayAlignmentProvider>