public enum TickSource extends 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 |
---|---|
String |
value()
Returns the name value of property
|
static TickSource |
valueOf(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.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
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(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 null