Enum Class WorkflowActivityType

java.lang.Object
java.lang.Enum<WorkflowActivityType>
com.mendix.workflows.WorkflowActivityType
All Implemented Interfaces:
Serializable, Comparable<WorkflowActivityType>, Constable

public enum WorkflowActivityType extends Enum<WorkflowActivityType>
Represents the type of a workflow activity.
  • Enum Constant Details

    • START

      public static final WorkflowActivityType START
      The start activity.
    • END

      public static final WorkflowActivityType END
      The end activity.
    • DECISION

      public static final WorkflowActivityType DECISION
      The decision activity.
    • PARALLEL_SPLIT

      public static final WorkflowActivityType PARALLEL_SPLIT
      The (start of a) parallel split activity.
    • END_OF_PARALLEL_SPLIT_BRANCH

      @Deprecated public static final WorkflowActivityType END_OF_PARALLEL_SPLIT_BRANCH
      Deprecated.
      since Mendix 10.6.0, no replacement
      The end of a path in a parallel split activity.
    • MERGE_OF_PARALLEL_SPLIT

      public static final WorkflowActivityType MERGE_OF_PARALLEL_SPLIT
      The (invisible) end of a parallel split activity.
    • USER_TASK

      public static final WorkflowActivityType USER_TASK
      The (single) user task activity.
    • MULTI_INPUT_USER_TASK

      public static final WorkflowActivityType MULTI_INPUT_USER_TASK
      The multi-user task activity.
    • CALL_MICROFLOW

      public static final WorkflowActivityType CALL_MICROFLOW
      The call microflow activity.
    • CALL_WORKFLOW

      public static final WorkflowActivityType CALL_WORKFLOW
      The call workflow activity.
    • JUMP

      public static final WorkflowActivityType JUMP
      The jump activity.
    • WAIT_FOR_NOTIFICATION

      public static final WorkflowActivityType WAIT_FOR_NOTIFICATION
      The wait for notification activity.
    • WAIT_FOR_TIMER

      public static final WorkflowActivityType WAIT_FOR_TIMER
      The wait for timer activity.
    • NON_INTERRUPTING_TIMER_EVENT

      public static final WorkflowActivityType NON_INTERRUPTING_TIMER_EVENT
      The start activity of a non-interrupting timer boundary event flow.
    • END_OF_BOUNDARY_EVENT_PATH

      public static final WorkflowActivityType END_OF_BOUNDARY_EVENT_PATH
      The end of a boundary event path.
  • Method Details

    • values

      public static WorkflowActivityType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static WorkflowActivityType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Returns the string representation of the workflow activity type.
      Returns:
      the string representation