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