Class ExecutionSummary


  • public class ExecutionSummary
    extends java.lang.Object
    Since 3.17.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      int getExecutionOrder()
      A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
      java.lang.Boolean getSuccess()
      Whether the execution was successful or not if known by the client.
      int hashCode()  
      void setExecutionOrder​(int executionOrder)
      A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
      void setSuccess​(java.lang.Boolean success)
      Whether the execution was successful or not if known by the client.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ExecutionSummary

        public ExecutionSummary()
      • ExecutionSummary

        public ExecutionSummary​(int executionOrder)
      • ExecutionSummary

        public ExecutionSummary​(int executionOrder,
                                java.lang.Boolean success)
    • Method Detail

      • getExecutionOrder

        public int getExecutionOrder()
        A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
      • setExecutionOrder

        public void setExecutionOrder​(int executionOrder)
        A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
      • getSuccess

        public java.lang.Boolean getSuccess()
        Whether the execution was successful or not if known by the client.
      • setSuccess

        public void setSuccess​(java.lang.Boolean success)
        Whether the execution was successful or not if known by the client.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object