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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

voidadd(final double operand)
Adds a value to the value of this instance.
voidadd(final Number operand)
Adds a value to the value of this instance.
doubledoubleValue()
Returns the value of this MutableDouble as a double.
DoublegetValue()
Gets the value as a Double instance.
intintValue()
Returns the value of this MutableDouble as an int.
voidsetValue(final double value)
Sets the value.
voidsetValue(final Number value)
Sets the value from any Number instance.
DoubletoDouble()
Gets this mutable as an instance of Double.