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