public enum TickSource extends java.lang.Enum<TickSource> implements Key
Enum Constant and Description |
---|
auto
Generates "optimal" ticks based on scale size and time options.
|
data
Generates ticks from data (including labels from data
{t|x|y} objects). |
labels
Generates ticks from user given
data.labels values ONLY. |
Modifier and Type | Method and Description |
---|---|
static TickSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickSource auto
public static final TickSource data
{t|x|y}
objects).public static final TickSource labels
data.labels
values ONLY.public static TickSource[] values()
for (TickSource c : TickSource.values()) System.out.println(c);
public static TickSource 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