
You use a switch () to define different processing branches for a process.
You define a condition for each processing branch. The condition is checked at runtime. The process is continued in the branch that is first to return the value true. If no branch returns the value true, then the process is continued in the Otherwise branch. The Otherwise branch is created automatically
The system checks the conditions in the order that they are numbered. This corresponds to the following sequence:
More information: Defining a Condition