public static enum AbstractScale.LabelSide extends java.lang.Enum<AbstractScale.LabelSide>
| Enum Constant and Description |
|---|
Primary
bottom or left side of tick marks for linear scale, or outside for
round scale
|
Secondary
top or right side of tick marks for linear scale, or inside for round
scale
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractScale.LabelSide |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractScale.LabelSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractScale.LabelSide Primary
public static final AbstractScale.LabelSide Secondary
public static AbstractScale.LabelSide[] values()
for (AbstractScale.LabelSide c : AbstractScale.LabelSide.values()) System.out.println(c);
public static AbstractScale.LabelSide 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