Troubleshooting and Reference Guide : Available Functions : Using Core Functions : List Functions
 
Share this page                  
List Functions
The List category provides common List manipulation functions.
 
Function Name
Description
Output Type
Parameters
ListFunctions.listConcat
Concatenates the values of input fields.
Object<List.class>
Object<List.class>
Object<List.class>
ListFunctions.listGet
Returns an element at the specified position in the list.
Object<Object.class>
Object<List.class>
Integer value
ListFunctions.listSize
Finds the number of elements in the input list.
 
Integer
Object<List.class>
ListFunctions.listToString
Returns string representation of the input list.
String
Object<List.class>
ListFunctions.listContains
Checks if a list contains an element.
Boolean
Object<List.class>
Scalar value
ListFunctions.listContainsAll
Checks if a list contains a sublist.
Boolean
Object<List.class>
Object<List.class>
ListFunctions.listDistinct
Returns a list with distinct elements.
Object<List.class>
Object<List.class>
ListFunctions.listReverse
Returns a list with elements placed in reversed order.
Object<List.class>
Object<List.class>
ListFunctions.listSort
Sorts elements of list in ascending or descending order.
Object<List.class>
Object<List.class>
String value
ListFunctions.subList
Returns a view of the portion of input list between the specified fromIndex, inclusive and toIndex, exclusive.
Object<List.class>
Object<List.class>
Integer value
Integer value