setValue method

DD setValue(
  1. double value
)

Set the value for the DD object. This method supports the mutating operations concept described in the class documentation (see above). @param value a floating point value to be stored in the instance. @return a self-reference to the DD instance.

Implementation

DD setValue(double value) {
  init(value);
  return this;
}