The Switch operator is used to implement a decision not via the XOR branches of a process, but to shift the decision into the data flow of the function. The Switch operator has exactly three incoming slots and one outgoing slot. As input value for the topmost slot, specify a Boolean value. You can specify a variable of any data type for the other two incoming slots, but the values of the two slots must have the same data type. Normally, you must model a decision in ARIS using an XOR operator and you must model a data flow for each path. With the Switch operator you can model this over a path. The result of the decision must be a Boolean value and is entered in the first operator slot. If the first slot is set with true, the second slot is used, if the first slot is set with false, the third slot is used. |