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