public enum LabelKinds extends java.lang.Enum<LabelKinds>
Enum Constant and Description |
---|
InnerLabel
Draw inner label in graphic representation of data item.
|
OuterLabel
Draw outer label nearby graphic representation of data item.
|
ToolTip
Show label as a tooltip.
|
XAxisLabel
Draw data label at X axis.
|
YAxisLabel
Draw data label at Y axis.
|
ZAxisLabel
Draw data label at Z axis.
|
Modifier and Type | Method and Description |
---|---|
static LabelKinds |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelKinds[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelKinds InnerLabel
public static final LabelKinds OuterLabel
public static final LabelKinds ToolTip
public static final LabelKinds XAxisLabel
public static final LabelKinds YAxisLabel
public static final LabelKinds ZAxisLabel
public static LabelKinds[] values()
for (LabelKinds c : LabelKinds.values()) System.out.println(c);
public static LabelKinds 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