Package com.adobe.xfa.ut
Class DoubleHolder
java.lang.Object
com.adobe.xfa.ut.DoubleHolder
A mutable holder class to represent an double value.
DoubleHolder objects are useful as return parameters.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a DoubleHolder object with the initial value 0.0.DoubleHolder(double value) Instantiates a DoubleHolder object with the initial value given. -
Method Summary
-
Field Details
-
value
public double valueThe double value held by this object.
-
-
Constructor Details
-
DoubleHolder
public DoubleHolder()Instantiates a DoubleHolder object with the initial value 0.0. -
DoubleHolder
public DoubleHolder(double value) Instantiates a DoubleHolder object with the initial value given.- Parameters:
value- the initial value.
-