OCLOperators
No edit summary
 
(138 intermediate revisions by 8 users not shown)
Line 1: Line 1:
== General operators ==
<message>Please add something to the text</message>OCL operators define constraints and operations on objects in an object-oriented programming language like Java, C++, or C#. OCL operators can be used in OCL expressions to specify constraints on objects or to perform operations on object properties.
To find all available you can open the OCL-Editor and type in a class:
=== Examples ===
Let's say we have a class called "Person" with properties like "name," "age," and "gender." We can use OCL operators to define constraints on the properties of the "Person" class. Here are some examples:


[[File:Ocl-editor 1.png|frameless|433x433px|link=https://wiki.mdriven.net/index.php/File:Ocl-editor_1.png]]
'''1.''' To define a constraint that ensures that the "age" property of a "Person" object is greater than or equal to 18, we can use the greater than or equal to (>=) operator as follows: 
{| class="wikitable"
context Person inv: self.age >= 18
!Operators
'''2.''' To define a constraint that ensures that the "gender" property of a "Person" object is either "Male" or "Female," we can use the OR (||) operator as follows: 
!Description
context Person inv: self.gender = 'Male' or self.gender = 'Female'
|-
'''3.''' To define a constraint that ensures that the "name" property of a "Person" object starts with an uppercase letter, we can use the dot notation (.) and the regular expression operator (matches) as follows: 
|'''[[Allinstances operator|Allinstances]]'''
context Person inv: self.name.matches('^[A-Z]')
|All the objects of the class
In addition to defining constraints, OCL operators are useful for performing operations on object properties. For example, we can use the sum() operator to calculate the sum of all the elements in a collection property of a "Person" object as follows:
|-
context Person inv: self.salary.sum() < 100000
|'''allinstancesAtTime'''
OCL operators provide a powerful way to define constraints and operations on objects, making it easy to write correct and maintainable object-oriented programs.
|All the currently loaded instances
|-
|'''[[OCLOperators allStates|AllStates]]'''
|Meta information about available states in state machines the class may contain
|-
|'''allSubClasses'''
|Meta information on all the sub classes this class has
|-
|'''AllSuperTypes'''
|Meta information on all the super classes – in inheritance order the class has
|-
|'''associationEnds'''
|Meta information on all the associationEnds
|-
|'''Asstring'''
|The string representation of the class – the asString operation is available on everything
|-
|'''Attributes'''
|Meta information about what attributes the class has
|-
|'''Contraints'''
|Meta information on what constraints the class has
|-
|'''Emptylist'''
|Returns an empty list typed to hold objects of the class
|-
|'''IsDirtyMember'''
|
|-
|'''isNull'''
|
|-
|'''nullValue'''
|A typed null value
|-
|'''objectFromExternalId'''
|An external identity will be resolved to the object
|-
|'''oclAsType'''
|The type of the class
|-
|'''oclIsKindOf'''
|This is to if a class is a subclass or a the class itself and not unrelated
|-
|'''oclIsTypeOf'''
|Returns true if
|-
|'''oclSingleton'''
|Classes that implements the Singleton pattern – by setting IsSingleton=true – will return the singleton instance with this operator
|-
|'''OclType'''
|
|-
|'''safeCast'''
|
|-
|'''SuperTypes'''
|
|-
|'''TaggedValue'''
|Meta information on tagged values set in the class
|-
|'''TaggedValueOnFeature'''
|Meta information on Tagged values set on a named feature in the class
|-
|'''Typename'''
|The type name as a string
|-
|'''ViewModels'''
|A tuple with the ViewModels for this class a members
|}


== Collection operators ==
OCL operators make it easy to write correct and maintainable object-oriented programs.
Once you have a collection of objects there are certain operators that are applicable to it.  


See this page for [[examples on collection operators]]
=== Examples of OCL Operators ===
 
Again you can use the OCL-Editor to see what they are:
 
[[File:Collection of objects operators.png|frameless|453x453px|link=https://wiki.mdriven.net/index.php/File:Collection_of_objects_operators.png]]
{| class="wikitable"
{| class="wikitable"
!Operators
|'''Type'''
!Description
|'''Description'''
|-
|'''->append'''
|Add another object last
|-
|'''->asBag'''
|Collapses to one list
|-
|'''->asSequence'''
|Collapses to one list
|-
|'''->asset'''
|Remove doublets
|-
|'''->at'''
|Get the objects at X where the first index is 1
|-
|'''->at0'''
|Get the objects at X where the first index is 0
|-
|'''->collect'''
|Iterate over the collection and build a tuple result
|-
|'''->count'''
|Count how many meet a certain criteria
|-
|'''->difference'''
|The difference between 2 collections
|-
|'''->excluding'''
|The collection except this single object
|-
|'''->exists'''
|Are there any objects that fulfill the criteria
|-
|'''->filterOnType'''
|Only keep the ones of a certain type
|-
|'''->first'''
|Return the first object
|-
|'''->forAll'''
|Iterate all that fulfills the critera
|-
|'''->groupBy'''
|Build collection of tuples grouped by some aspect
|-
|'''->includes'''
|Does the collection include the object
|-
|'''->includesAll'''
|Does the collection include the whole other collection
|-
|'''->including'''
|
|-
|'''->IndexOf'''
|The 1 based index of an object in the collection possibly -1 if not existing
|-
|'''->indexOf0'''
|The 0 based index of an object in the collection possibly -1 if not existing
|-
|'''->intersection'''
|The intersection of two collections
|-
|'''->isEmpty'''
|Returns true if the collection is empty
|-
|'''->last'''
|Returns the last object in the collection
|-
|'''->notEmpty'''
|Returns true of the collection is not empty
|-
|'''->orderBy'''
|Sorts the collection on one or more properties
|-
|'''->orderDescending'''
|Sort the from biggest to smallest
|-
|'''->orderGeneric'''
|Sorts the list of properties with interchangeable sort order: (expr1, OclSortDirection::ascending, expr2, OclSortDirection::descending...)
|-
|'''->prepend'''
|Add an object in front of the list
|-
|-
|'''->reject'''
|[[Documentation:OCL General Operators|General Operators]]
|Returns the objects not matching the criteria
|used to manipulate and query objects
|-
|-
|'''->select'''
|[[Documentation:OCL Collection Operators|Collection Operators]]
|Returns the objects matching the criteria
|operators applicable to a collection of objects
|-
|-
|'''->size'''
| [[Documentation:OCL String Operators|String Operators]]
|Returns the number of elements in the collection
|used to manipulate and compare string values
|-
|-
|'''->subsequence'''
|[[Documentation:OCL Number Operators|Number Operators]]
|Returns a smaller collection from a start to stop
|used to perform arithmetic and comparison operations on numeric values
|-
|-
|'''->symmetricDifference'''
|[[Documentation:OCL Boolean Operators|Boolean Operators]]
|The symmetric difference between the collections; ie all the objects in collection1 or collection2 but not in both
|used to evaluate and compare Boolean expressions
|-
|-
|'''->union'''
|[https://wiki.mdriven.net/index.php/Category:OCL_ViewModel_Operators ViewModel Operators](on selfVM variable)
|The set of objects in collection1 and objects in collection2
|used to manipulate and interact with data in a ViewModel class of an application.
|}
|}
{{Edited|July|12|2025}}
[[Category:OCL]]
[[Category:Beginner]]
[[Category:OCLOperators]]

Latest revision as of 05:54, 10 March 2025

This page was created by Alexandra on 2017-08-08. Last edited by Stephanie@mdriven.net on 2025-03-10.

OCL operators define constraints and operations on objects in an object-oriented programming language like Java, C++, or C#. OCL operators can be used in OCL expressions to specify constraints on objects or to perform operations on object properties.

Examples

Let's say we have a class called "Person" with properties like "name," "age," and "gender." We can use OCL operators to define constraints on the properties of the "Person" class. Here are some examples:

1. To define a constraint that ensures that the "age" property of a "Person" object is greater than or equal to 18, we can use the greater than or equal to (>=) operator as follows:

context Person inv: self.age >= 18

2. To define a constraint that ensures that the "gender" property of a "Person" object is either "Male" or "Female," we can use the OR (||) operator as follows:

context Person inv: self.gender = 'Male' or self.gender = 'Female'

3. To define a constraint that ensures that the "name" property of a "Person" object starts with an uppercase letter, we can use the dot notation (.) and the regular expression operator (matches) as follows:

context Person inv: self.name.matches('^[A-Z]')

In addition to defining constraints, OCL operators are useful for performing operations on object properties. For example, we can use the sum() operator to calculate the sum of all the elements in a collection property of a "Person" object as follows:

context Person inv: self.salary.sum() < 100000

OCL operators provide a powerful way to define constraints and operations on objects, making it easy to write correct and maintainable object-oriented programs.

OCL operators make it easy to write correct and maintainable object-oriented programs.

Examples of OCL Operators

Type Description
General Operators used to manipulate and query objects
Collection Operators operators applicable to a collection of objects
String Operators used to manipulate and compare string values
Number Operators used to perform arithmetic and comparison operations on numeric values
Boolean Operators used to evaluate and compare Boolean expressions
ViewModel Operators(on selfVM variable) used to manipulate and interact with data in a ViewModel class of an application.