public class TickUnits extends java.lang.Object implements TickUnitSource, java.lang.Cloneable, java.io.Serializable
DateAxis and
NumberAxis classes.| Constructor and Description |
|---|
TickUnits()
Constructs a new collection of tick units.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(TickUnit unit)
Adds a tick unit to the collection.
|
java.lang.Object |
clone()
Returns a clone of the collection.
|
boolean |
equals(java.lang.Object obj)
Tests an object for equality with this instance.
|
TickUnit |
get(int pos)
Returns the tickunit on the given position.
|
TickUnit |
getCeilingTickUnit(double size)
Returns the tick unit in the collection that is greater than or equal
to the specified size.
|
TickUnit |
getCeilingTickUnit(TickUnit unit)
Returns the tick unit in the collection that is greater than or equal
to (in size) the specified unit.
|
TickUnit |
getLargerTickUnit(TickUnit unit)
Returns a tick unit that is larger than the supplied unit.
|
int |
size()
Returns the number of tick units in this collection.
|
public void add(TickUnit unit)
unit - the tick unit to add (null not permitted).public int size()
This method is required for the XML writer.
public TickUnit get(int pos)
This method is required for the XML writer.
pos - the position in the list.public TickUnit getLargerTickUnit(TickUnit unit)
getLargerTickUnit in interface TickUnitSourceunit - the unit.public TickUnit getCeilingTickUnit(TickUnit unit)
getCeilingTickUnit in interface TickUnitSourceunit - the unit.public TickUnit getCeilingTickUnit(double size)
getCeilingTickUnit in interface TickUnitSourcesize - the size.public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class java.lang.Objectjava.lang.CloneNotSupportedException - if an item in the collection does not
support cloning.public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - the object to test (null permitted).