Method Summary |
|
public void | add(float 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 MutableFloat as a double. |
public boolean | equals(Object obj) Compares this object against some other object. |
public float | floatValue() Returns the value of this MutableFloat as a float. |
public Object | getValue() Gets the value as a Float 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 MutableFloat as a int. |
public boolean | isInfinite() Checks whether the float value is infinite. |
public boolean | isNaN() Checks whether the float value is the special NaN value. |
public long | longValue() Returns the value of this MutableFloat as a long. |
public void | setValue(float value) Sets the value. |
public void | setValue(Object value) Sets the value from any Number instance. |
public void | subtract(float operand) Subtracts a value. |
public void | subtract(Number operand) Subtracts a value. |
public Float | toFloat() Gets this mutable as an instance of Float. |
public String | toString() Returns the String value of this mutable. |