Enum ParameterDirectionKind
ParameterDirectionKind is an Enumeration that defines literals used to specify direction of parameters. <p>From package UML::Classification.</p>
[TypeConverter(typeof(ParameterDirectionKindConverter))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//ParameterDirectionKind")]
public enum ParameterDirectionKind
Fields
In = 0
Indicates that Parameter values are passed in by the caller.
Inout = 1
Indicates that Parameter values are passed in by the caller and (possibly different) values passed out to the caller.
Out = 2
Indicates that Parameter values are passed out to the caller.
Return = 3
Indicates that Parameter values are passed as return values back to the caller.