Class PointValuePair.DataTransferObject

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    PointValuePair

    private static class PointValuePair.DataTransferObject
    extends java.lang.Object
    implements java.io.Serializable
    Internal class used only for serialization.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private double[] point
      Point coordinates.
      private static long serialVersionUID
      Serializable UID.
      private double value
      Value of the objective function at the point.
    • Constructor Summary

      Constructors 
      Constructor Description
      DataTransferObject​(double[] point, double value)
      Simple constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      private java.lang.Object readResolve()
      Replace the deserialized data transfer object with a PointValuePair.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • serialVersionUID

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

        private final double[] point
        Point coordinates.
      • value

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

      • DataTransferObject

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

      • readResolve

        private java.lang.Object readResolve()
        Replace the deserialized data transfer object with a PointValuePair.
        Returns:
        replacement PointValuePair