org.jfree.chart.axis

Class NumberTickUnit

public class NumberTickUnit extends TickUnit implements Serializable

A numerical tick unit.
Constructor Summary
NumberTickUnit(double size)
Creates a new number tick unit.
NumberTickUnit(double size, NumberFormat formatter)
Creates a new number tick unit.
NumberTickUnit(double size, NumberFormat formatter, int minorTickCount)
Creates a new number tick unit.
Method Summary
booleanequals(Object obj)
Tests this formatter for equality with an arbitrary object.
inthashCode()
Returns a hash code for this instance.
StringtoString()
Returns a string representing this unit.
StringvalueToString(double value)
Converts a value to a string.

Constructor Detail

NumberTickUnit

public NumberTickUnit(double size)
Creates a new number tick unit.

Parameters: size the size of the tick unit.

NumberTickUnit

public NumberTickUnit(double size, NumberFormat formatter)
Creates a new number tick unit.

Parameters: size the size of the tick unit. formatter a number formatter for the tick unit (null not permitted).

NumberTickUnit

public NumberTickUnit(double size, NumberFormat formatter, int minorTickCount)
Creates a new number tick unit.

Parameters: size the size of the tick unit. formatter a number formatter for the tick unit (null not permitted). minorTickCount the number of minor ticks.

Since: 1.0.7

Method Detail

equals

public boolean equals(Object obj)
Tests this formatter for equality with an arbitrary object.

Parameters: obj the object (null permitted).

Returns: A boolean.

hashCode

public int hashCode()
Returns a hash code for this instance.

Returns: A hash code.

toString

public String toString()
Returns a string representing this unit.

Returns: A string.

valueToString

public String valueToString(double value)
Converts a value to a string.

Parameters: value the value.

Returns: The formatted string.