public static enum TickFactory.TickFormatting extends java.lang.Enum<TickFactory.TickFormatting>
| Enum Constant and Description |
|---|
autoMode
Automatically adjust precision
|
roundAndChopMode
Rounded or chopped to the nearest decimal
|
useCustom
Use external scale provider
|
useExponent
Use Exponent
|
useSIunits
Use SI units (k,M,G,etc.)
|
| Modifier and Type | Method and Description |
|---|---|
static TickFactory.TickFormatting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickFactory.TickFormatting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickFactory.TickFormatting autoMode
public static final TickFactory.TickFormatting roundAndChopMode
public static final TickFactory.TickFormatting useExponent
public static final TickFactory.TickFormatting useSIunits
public static final TickFactory.TickFormatting useCustom
public static TickFactory.TickFormatting[] values()
for (TickFactory.TickFormatting c : TickFactory.TickFormatting.values()) System.out.println(c);
public static TickFactory.TickFormatting 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