public enum LabelHorzPosition extends Enum<LabelHorzPosition>
Enum Constant and Description |
---|
CENTER
Indicates that the label should be horizontally centered with respect to
the label location.
|
LEFT
Indicates that the label should be right-aligned with the label
location.
|
RIGHT
Indicates that the label should be left-aligned with the label
location.
|
Modifier and Type | Method and Description |
---|---|
static LabelHorzPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelHorzPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelHorzPosition RIGHT
public static final LabelHorzPosition LEFT
public static final LabelHorzPosition CENTER
public static LabelHorzPosition[] values()
for (LabelHorzPosition c : LabelHorzPosition.values()) System.out.println(c);
public static LabelHorzPosition 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 null