Enum OrchestrationRuntimeStatus

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CANCELED
      The orchestration canceled gracefully.
      COMPLETED
      The orchestration completed normally.
      CONTINUED_AS_NEW
      The orchestration is transitioning into a new instance.
      FAILED
      The orchestration completed with an unhandled exception.
      PENDING
      The orchestration was scheduled but hasn't started running.
      RUNNING
      The orchestration started running.
      SUSPENDED
      The orchestration is in a suspended state.
      TERMINATED
      The orchestration was abruptly terminated via a management API call.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static OrchestrationRuntimeStatus valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static OrchestrationRuntimeStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • CONTINUED_AS_NEW

        public static final OrchestrationRuntimeStatus CONTINUED_AS_NEW
        The orchestration is transitioning into a new instance.

        This status value is obsolete and exists only for compatibility reasons.

      • CANCELED

        public static final OrchestrationRuntimeStatus CANCELED
        The orchestration canceled gracefully.

        The Canceled status is not currently used and exists only for compatibility reasons.

      • TERMINATED

        public static final OrchestrationRuntimeStatus TERMINATED
        The orchestration was abruptly terminated via a management API call.
    • Method Detail

      • values

        public static OrchestrationRuntimeStatus[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (OrchestrationRuntimeStatus c : OrchestrationRuntimeStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OrchestrationRuntimeStatus valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null