Enum ExpansionKind
ExpansionKind is an enumeration type used to specify how an ExpansionRegion executes its contents. <p>From package UML::Actions.</p>
[TypeConverter(typeof(ExpansionKindConverter))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//ExpansionKind")]
public enum ExpansionKind
Fields
Iterative = 1
The content of the ExpansionRegion is executed iteratively for the elements of the input collections, in the order of the input elements, if the collections are ordered.
Parallel = 0
The content of the ExpansionRegion is executed concurrently for the elements of the input collections.
Stream = 2
A stream of input collection elements flows into a single execution of the content of the ExpansionRegion, in the order of the collection elements if the input collections are ordered.