Method Summary |
|
public double | getMaximum() Returns the last angle in the sequence. |
public double | getMinimum() Returns the first angle in this sequence. |
public Object | getNextValue() Returns the next angle in the sequence. |
public Object | getPreviousValue() Returns the previous angle in the sequence. |
public double | getStepSize() Returns the size of the value change computed by the
getNextValue and
getPreviousValue methods. |
public Object | getValue() Returns the value of the current angle of the sequence. |
public void | setMaximum(double maximum) Changes the upper bound for angles in this sequence. |
public void | setMinimum(double minimum) Changes the lower bound for angles in this sequence. |
public void | setStepSize(double stepSize) Changes the size of the value change computed by the
getNextValue and
getPreviousValue methods. |
public void | setValue(Object value) Sets the current value for this sequence. |
final Angle | toAngle(double newValue) Wrap the specified value into an
Angle object. |