Skip to content

Commit 101e3aa

Browse files
[WSO2-Release] [Release 1.0.0] update documentation for release 1.0.0
1 parent 38dc0a2 commit 101e3aa

File tree

5 files changed

+2139
-36
lines changed

5 files changed

+2139
-36
lines changed

README.md

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,32 @@ For information on <a target="_blank" href="https://siddhi.io/">Siddhi</a> and i
1818

1919
## Latest API Docs
2020

21-
Latest API Docs is <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/"></a>.
21+
Latest API Docs is <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0">1.0.0</a>.
2222

2323
## Features
2424

25-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#collect-aggregate-function">collect</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#aggregate-function">Aggregate Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Collect multiple values to construct a list.</p></p></div>
26-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#merge-aggregate-function">merge</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#aggregate-function">Aggregate Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Collect multiple list to merge as a single list.</p></p></div>
27-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#add-function">add</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after adding the given value.</p></p></div>
28-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#addall-function">addAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after adding all the values from another list.</p></p></div>
29-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#contains-function">contains</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the list contains the value.</p></p></div>
30-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#containsall-function">containsAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the list contains all the values.</p></p></div>
31-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#create-function">create</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function creates a list of all values.</p></p></div>
32-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#get-function">get</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the value at the specific index, null if index is out of range.</p></p></div>
33-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#indexof-function">indexOf</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the last index of the given element.</p></p></div>
34-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#isempty-function">isEmpty</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the list is empty.</p></p></div>
35-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#islist-function">isList</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the object is type of a list.</p></p></div>
36-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#lastindexof-function">lastIndexOf</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the index of the given value.</p></p></div>
37-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#remove-function">remove</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after removing the element with the specified value.</p></p></div>
38-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#removeall-function">removeAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after removing all the element with the specified list.</p></p></div>
39-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#size-function">size</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function to return the size of the list.</p></p></div>
40-
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api//#tokenize-stream-processor">tokenize</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#stream-processor">Stream Processor</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Tokenize the list and return each key, value as new attributes in events</p></p></div>
25+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#collect-aggregate-function">collect</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#aggregate-function">Aggregate Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Collects multiple values to construct a list.</p></p></div>
26+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#merge-aggregate-function">merge</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#aggregate-function">Aggregate Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Collects multiple lists to merge as a single list.</p></p></div>
27+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#add-function">add</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after adding the given value.</p></p></div>
28+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#addall-function">addAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after adding all the values from the given list.</p></p></div>
29+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#clear-function">clear</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the cleared list. </p></p></div>
30+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#clone-function">clone</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the cloned list.</p></p></div>
31+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#contains-function">contains</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks whether the list contains the specific value.</p></p></div>
32+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#containsall-function">containsAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks whether the list contains all the values in the given list.</p></p></div>
33+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#create-function">create</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function creates a list containing all values provided.</p></p></div>
34+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#get-function">get</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the value at the specific index, null if index is out of range.</p></p></div>
35+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#indexof-function">indexOf</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the last index of the given element.</p></p></div>
36+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#isempty-function">isEmpty</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the list is empty.</p></p></div>
37+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#islist-function">isList</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function checks if the object is type of a list.</p></p></div>
38+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#lastindexof-function">lastIndexOf</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the index of the given value.</p></p></div>
39+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#remove-function">remove</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after removing the element with the specified value.</p></p></div>
40+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#removeall-function">removeAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after removing all the element with the specified list.</p></p></div>
41+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#removebyindex-function">removeByIndex</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after removing the element with the specified index.</p></p></div>
42+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#retainall-function">retainAll</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after retaining all the elements in the specified list.</p></p></div>
43+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#setvalue-function">setValue</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns the updated list after replacing the element in the given index by the given value.</p></p></div>
44+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#size-function">size</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function to return the size of the list.</p></p></div>
45+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#sort-function">sort</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#function">Function</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Function returns lists sorted in ascending or descending order.</p></p></div>
46+
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-list/api/1.0.0/#tokenize-stream-processor">tokenize</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#stream-processor">Stream Processor</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Tokenize the list and return each key, value as new attributes in events</p></p></div>
4147

4248
## Dependencies
4349

0 commit comments

Comments
 (0)