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 doublegetDefaultValue()doublegetLowerLimit()java.lang.StringgetName()doublegetSE()doublegetUpperLimit()doublegetValue()Get the current value of this doublevoidsetSE(double value)voidsetValue(double value)Set the current value of this doublejava.lang.StringtoString()
-
-
-
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:
toStringin classjava.lang.Object
-
-