public static enum Column.Position extends Enum<Column.Position>
| Enum Constant and Description |
|---|
FIRST_COLUMN |
MIDDLE |
| Modifier and Type | Method and Description |
|---|---|
static Column.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Column.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.Position FIRST_COLUMN
public static final Column.Position MIDDLE
public static Column.Position[] values()
for (Column.Position c : Column.Position.values()) System.out.println(c);
public static Column.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 © 2012–2016 JBoss by Red Hat. All rights reserved.