Enum TickFactory.TickFormatting
- java.lang.Object
-
- java.lang.Enum<TickFactory.TickFormatting>
-
- org.eclipse.nebula.visualization.xygraph.linearscale.TickFactory.TickFormatting
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TickFactory.TickFormatting>
- Enclosing class:
- TickFactory
public static enum TickFactory.TickFormatting extends java.lang.Enum<TickFactory.TickFormatting>
tick formatting modes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description autoMode
Automatically adjust precisionroundAndChopMode
Rounded or chopped to the nearest decimaluseCustom
Use external scale provideruseExponent
Use ExponentuseSIunits
Use SI units (k,M,G,etc.)
-
Constructor Summary
Constructors Modifier Constructor Description private
TickFormatting()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
autoMode
public static final TickFactory.TickFormatting autoMode
Automatically adjust precision
-
roundAndChopMode
public static final TickFactory.TickFormatting roundAndChopMode
Rounded or chopped to the nearest decimal
-
useExponent
public static final TickFactory.TickFormatting useExponent
Use Exponent
-
useSIunits
public static final TickFactory.TickFormatting useSIunits
Use SI units (k,M,G,etc.)
-
useCustom
public static final TickFactory.TickFormatting useCustom
Use external scale provider
-
-
Method Detail
-
values
public static TickFactory.TickFormatting[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TickFactory.TickFormatting c : TickFactory.TickFormatting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TickFactory.TickFormatting valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-