I would like to change the following diagram to have a single decision node (three branches) and a single merge node.
Is such a diagram possible with plantuml? The above diagram results from this code:
@startuml
skinparam ConditionEndStyle diamond
:A;
if (case1) then (yes)
:B1;
else (no)
if (case 2) then (yes)
:B2;
else (no)
:B3;
endif
endif
:C;
@enduml
I know about elseif
; it does not produce the result I seek. (It retains two decision nodes, and uses a bar instead of a merge node; is this even valid UML?) I would reluctantly consider a ConditionalNode as an alternative, but I don't see a way to construct one in plantuml.
question from:
https://stackoverflow.com/questions/65892041/how-does-plantuml-represent-a-multiple-cases-decision-node 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…