Java org.apache.commons.lang3.mutable MutableFloat fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3.mutable MutableFloat fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang3.mutable MutableFloat.

The text is from its open source code.

Constructor

MutableFloat(final float value)
Constructs a new MutableFloat with the specified value.
MutableFloat(final Number value)
Constructs a new MutableFloat with the specified value.
MutableFloat(final String value)
Constructs a new MutableFloat parsing the given string.
MutableFloat()
Constructs a new MutableFloat with the default value of zero.

Method

voidadd(final float operand)
Adds a value to the value of this instance.
voidadd(final Number operand)
Adds a value to the value of this instance.
floatfloatValue()
Returns the value of this MutableFloat as a float.
FloatgetValue()
Gets the value as a Float instance.
voidsetValue(final float value)
Sets the value.
voidsetValue(final Number value)
Sets the value from any Number instance.