Class PointValuePair.DataTransferObject

java.lang.Object
org.apache.commons.math3.optimization.PointValuePair.DataTransferObject
All Implemented Interfaces:
Serializable
Enclosing class:
PointValuePair

private static class PointValuePair.DataTransferObject extends Object implements Serializable
Internal class used only for serialization.
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Serializable UID.
      See Also:
    • point

      private final double[] point
      Point coordinates.
    • value

      private final double value
      Value of the objective function at the point.
  • Constructor Details

    • DataTransferObject

      DataTransferObject(double[] point, double value)
      Simple constructor.
      Parameters:
      point - Point coordinates.
      value - Value of the objective function at the point.
  • Method Details