Returns the list of XSQL-Script functions defined in the system. Use the functions getAttributes and getName to show the names and the
attributes of the functions.
1 function.getDefinedFunctions
<function.getDefinedFunctions />
Returns | |
---|---|
Type | Description |
Arraylist | Returns the arraylist with the list of functions. |
Example
Returns the names and attributes of each one of the XSQL-Script functions.
Copy
<xsql-script name=''> <body> <iterator name='m_func'> <in> <function.getDefinedFunctions /> </in> <do> <set name='m_attrs'><function.getAttributes><m_func /></function.getAttributes></set> <println>Function: <function.getName><m_func /></function.getName></println> <iterator name='m_attr'> <in> <m_attrs /> </in> <do> <println> Attribute:<m_attr /></println> </do> </iterator> </do> </iterator> </body> </xsql-script>