| Class | Description |
|---|---|
| Count |
Calc count not null values in path
See @link FunctionsTest#countTest() for demo
|
| DateToStr |
Convert java.util.Date to string with format
|
| Distinct |
Return true if this row is encountered for the first time
|
| False |
Return boolean value 'false'
|
| First |
Return true is current row is first
Using:
If query .mailList.autor
return {List:['Autor01','Autor02','Autor03']}
Then query .mailList.autor(firstRow)
will return {String:'Autor01'}
|
| Last |
Return true is current row is last
Using:
If query .mailList.autor
return {List:['Autor01','Autor02','Autor03']}
Then query .mailList.autor(lastRow)
will return {String:'Autor03'}
|
| Like |
Return true if the condition specified by the regular expression is true
Parameters:
- string for test
- regular expression
|
| Max |
Detect max value
|
| MaxInRows |
Detect max value in path by all rows
|
| Min |
Detect minimal value in path
|
| Null |
Return null value
|
| Nvl |
Return substitute if value is null
|
| RowNum |
Return number of current row in collection.
|
| RowsCount |
Return the number of rows in this collection
|
| ToDate |
Converts a string with format to java.util.Date
|
| True |
Return boolean value 'true'
|
Copyright © 2018. All rights reserved.