public enum ItemLabelPositioning extends java.lang.Enum<ItemLabelPositioning>
| Enum Constant and Description |
|---|
CENTRAL
A single label is placed centrally.
|
FRONT_AND_BACK
Labels are placed at the front and the back (typically only one of the
two is visible at any time).
|
| Modifier and Type | Method and Description |
|---|---|
static ItemLabelPositioning |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemLabelPositioning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemLabelPositioning FRONT_AND_BACK
public static final ItemLabelPositioning CENTRAL
public static ItemLabelPositioning[] values()
for (ItemLabelPositioning c : ItemLabelPositioning.values()) System.out.println(c);
public static ItemLabelPositioning 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