| java.lang.Object argparser.DoubleHolder
DoubleHolder | public class DoubleHolder implements java.io.Serializable(Code) | | Wrapper class which ``holds'' a double value,
enabling methods to return double values through
arguments.
|
Field Summary | |
public double | value Value of the double, set and examined
by the application as needed. |
Constructor Summary | |
public | DoubleHolder() Constructs a new DoubleHolder with an initial
value of 0. | public | DoubleHolder(double d) Constructs a new DoubleHolder with a
specific initial value. |
value | public double value(Code) | | Value of the double, set and examined
by the application as needed.
|
DoubleHolder | public DoubleHolder()(Code) | | Constructs a new DoubleHolder with an initial
value of 0.
|
DoubleHolder | public DoubleHolder(double d)(Code) | | Constructs a new DoubleHolder with a
specific initial value.
Parameters: d - Initial double value. |
|
|