Method Summary |
|
public void | add(double operand) Adds a value. |
public void | add(Number operand) Adds a value. |
public int | compareTo(Object obj) Compares this mutable to another in ascending order. |
public void | decrement() Decrements the value. |
public double | doubleValue() Returns the value of this MutableDouble as a double. |
public boolean | equals(Object obj) Compares this object against the specified object. |
public float | floatValue() Returns the value of this MutableDouble as a float. |
public Object | getValue() Gets the value as a Double instance. |
public int | hashCode() Returns a suitable hashcode for this mutable. |
public void | increment() Increments the value. |
public int | intValue() Returns the value of this MutableDouble as a int. |
public boolean | isInfinite() Checks whether the double value is infinite. |
public boolean | isNaN() Checks whether the double value is the special NaN value. |
public long | longValue() Returns the value of this MutableDouble as a long. |
public void | setValue(double value) Sets the value. |
public void | setValue(Object value) Sets the value from any Number instance. |
public void | subtract(double operand) Subtracts a value. |
public void | subtract(Number operand) Subtracts a value. |
public Double | toDouble() Gets this mutable as an instance of Double. |
public String | toString() Returns the String value of this mutable. |