protected static enum AbstractColumnsView.Position extends Enum<AbstractColumnsView.Position>
| Enum Constant and Description |
|---|
APPEND
Put the column at the end of the table (right-hand side)
|
PREPEND
Put the column at the beginning of the table (left-hand side)
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractColumnsView.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractColumnsView.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractColumnsView.Position PREPEND
public static final AbstractColumnsView.Position APPEND
public static AbstractColumnsView.Position[] values()
for (AbstractColumnsView.Position c : AbstractColumnsView.Position.values()) System.out.println(c);
public static AbstractColumnsView.Position 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 © 2016. All Rights Reserved.