ISetStrategy
Short summary
An interface that provides set operations.
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | CNM_AbstractObject.IObject | - |
UML Diagram
Properties
instant
Type: IInstantSetStrategy
This property returns a fluent interface for immediate (wihtin one call) operations of sets.…
Methods
getEqualObject
- Parameters:
object(CNM_AbstractObject.IObject): The object to search for
- Return type:
BOOL
Searches an object that is equal to the provided object in terms of the compareTo method (or a comparator provided by the parent).…
intersect
- Parameters:
set(ISet): foreign set to intersect withexecute(BOOL): If intersect should be processed
- Return type: CNM_ReturnTypes.SingleExecutionState
overwrites the content of this set with the intersection of this set and the given set…
merge
- Parameters:
set(ISet): foreign set to merge withexecute(BOOL): If merge should be processed
- Return type: CNM_ReturnTypes.SingleExecutionState
overwrites the content of this set with the union of this set and the given set…
subtract
- Parameters:
set(ISet): foreign set to construct substractionexecute(BOOL): If substract should be processed
- Return type: CNM_ReturnTypes.SingleExecutionState
overwrites the content of this set with the set difference of this set and the given set…
Code
Declaration
INTERFACE ISetStrategy EXTENDS CNM_AbstractObject.IObject