public static enum ColorAxis.TickPosition extends Enum<ColorAxis.TickPosition>
| Enum Constant and Description |
|---|
INSIDE
Position the minor tick to the inside of the axis line
|
OUTSIDE
Position the minor tick to the outside of the axis line
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ColorAxis.TickPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorAxis.TickPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorAxis.TickPosition INSIDE
public static final ColorAxis.TickPosition OUTSIDE
public static ColorAxis.TickPosition[] values()
for (ColorAxis.TickPosition c : ColorAxis.TickPosition.values()) System.out.println(c);
public static ColorAxis.TickPosition 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 nullpublic String toString()
toString in class Enum<ColorAxis.TickPosition>Copyright © 2015. All Rights Reserved.