Package pal.misc
Class MutableDouble
- java.lang.Object
-
- pal.misc.MutableDouble
-
- All Implemented Interfaces:
java.io.Serializable
public class MutableDouble extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MutableDouble(double initialValue, double defaultValue, double minimumValue, double maximumValue, java.lang.String name)
The default value is also the initial value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDefaultValue()
double
getLowerLimit()
java.lang.String
getName()
double
getSE()
double
getUpperLimit()
double
getValue()
Get the current value of this doublevoid
setSE(double value)
void
setValue(double value)
Set the current value of this doublejava.lang.String
toString()
-
-
-
Method Detail
-
setValue
public final void setValue(double value)
Set the current value of this double
-
getValue
public final double getValue()
Get the current value of this double
-
getLowerLimit
public final double getLowerLimit()
-
getUpperLimit
public final double getUpperLimit()
-
getDefaultValue
public final double getDefaultValue()
-
getSE
public final double getSE()
-
setSE
public final void setSE(double value)
-
getName
public final java.lang.String getName()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-