How can I specify a conditions for method parameters in a UML class diagram?
For example the following method:
+grade(n : Integer)
The value for n should be between 1 and 6. Is it possible to do this? Or is there a different way like:
"+grade(n oneOf [1,2,3,4,5,6]"
Thx for your help.
Your 2nd approach is not allowed from UML's syntax. If you are in a certain domain you have control over you could document the use of that and it would be ok. However, the better approch would be to attach a constraint to that operation. You can use free text inside curly brackets attached as note. Or, if you're more daring, you can write a proper OCL. This from my POV only desirable in academic circles.