Name | Signature and Synopsis |
---|---|
addToList | int addToList(Object list, Object item) Adds the given item into the list. |
clearList | void clearList(Object list) Removes all the elements in the list. |
invokeFunctionInQuerySession | Object invokeFunctionInQuerySession(String querySessionName, String queryRuleFunctionUri, Object[]
parameters) Invokes a rule function in another query session/agent whose name is given along with the parameters. |
listToArray | Object[] listToArray(Object list) Copies the list contents by reference to a new array. |
newArray | Object[] newArray(int length) Creates an Object array. |
newList | Object newList() Creates a new List. |
removeFromList | Object removeFromList(Object list, int index) Removes the element at the given position in the list. |
sizeOfList | int sizeOfList(Object list) Returns the size/length of the given list. |