Enum WorkItemLifecyclePhase

    • Enum Constant Detail

      • SUBMITTED

        public static final WorkItemLifecyclePhase SUBMITTED
        The work item has been submitted for execution
      • DISPATCHED

        public static final WorkItemLifecyclePhase DISPATCHED
        The work item has been dispatched to the component responsible for its execution
      • RECEIVED

        public static final WorkItemLifecyclePhase RECEIVED
        The work item has been received by the component responsible for its execution
      • COMPLETED_WITH_ERRORS

        public static final WorkItemLifecyclePhase COMPLETED_WITH_ERRORS
        The work item execution is in progress
    • Method Detail

      • values

        public static WorkItemLifecyclePhase[] 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 (WorkItemLifecyclePhase c : WorkItemLifecyclePhase.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WorkItemLifecyclePhase valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null