ilog.rules.engine
Interface IlrCollection
-
- All Known Implementing Classes:
- IlrDefaultCollector
Deprecated.As of IBM ODM 8.9, the Classic Rule Engine is deprecated.
public interface IlrCollectionThis interface represents a collection in the ILOG Rule Language (IRL). A collection is a container which can be used in a collect condition to gather objects that satisfy some condition.
- See Also:
IlrDefaultCollector
-
-
Method Summary
Methods Modifier and Type Method and Description voidaddElement(java.lang.Object element)Deprecated.Adds an object to the collection.voidremoveElement(java.lang.Object element)Deprecated.Removes an object from the collection.voidupdateElement(java.lang.Object element)Deprecated.Updates an object of the collection.
-
-
-
Method Detail
-
addElement
void addElement(java.lang.Object element)
Deprecated.Adds an object to the collection. Whenever an object matches the condition, this method is called to put that object in the collection.
- Parameters:
element- The object to be added.
-
updateElement
void updateElement(java.lang.Object element)
Deprecated.Updates an object of the collection. Whenever an update is performed on an object of that collection, this method is called to make the collection aware of the change in the object.
- Parameters:
element- The object to be updated.
-
removeElement
void removeElement(java.lang.Object element)
Deprecated.Removes an object from the collection. When an object no longer matches the condition, this method is called to remove the object from the collection.
- Parameters:
element- The object to be removed.
-
-