Activity Diagram
Last updated
Was this helpful?
Last updated
Was this helpful?
An Activity Diagram represents workflow or process flow in a system, describing sequential and parallel actions. It is widely used for business logic modeling and process visualization.
Refer to the official documentation for more details -
Start & End Nodes
Represented by a black circle (start) and encircled black dot (end).
Actions (Activities)
Represented as rounded rectangles.
Each action represents a step in the workflow.
Transitions (Arrows)
Show the flow of execution between activities.
Decision Nodes
Diamond shape, used for if-else conditions.
Fork & Join Nodes
Represent parallel processing (splitting/joining flows).
Swimlanes
Separate responsibilities of different entities in the process.
This represents the User Registration Process in a web application.
Start (start
) and End (stop
) nodes.
Decision (if ... then ... else
): Validates user input.
Actions (: ActionName;
): Represents different activities.