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