Initializing help system before first use

XPRDEvent

  • java.lang.Object
    • com.dashoptimization.XPRDEvent


  • public class XPRDEvent
    extends java.lang.Object
    A Mosel event.
    • Field Summary

      Modifier and Type Field and Description
      static int EVENT_END
      Class of the termination event.
      int eventClass
      Class of this event.
      XPRDModel sender
      Sender of this event.
      double value
      Value of this event.
    • Method Summary

      Modifier and Type Method and Description
      java.lang.String toString()
      Genererate the string representation of an event.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • EVENT_END

        public static final int EVENT_END
        Class of the termination event. An event of this class is sent when the model terminates its execution
        See Also:
        Constant Field Values
      • sender

        public XPRDModel sender
        Sender of this event.
      • eventClass

        public int eventClass
        Class of this event.
      • value

        public double value
        Value of this event.
    • Method Detail

      • toString

        public java.lang.String toString()
        Genererate the string representation of an event. The text consists in "from: senderId class: eventClass value: value"
        Overrides:
        toString in class  java.lang.Object