The PEL Utils is a powerful library of built-in utility methods which can be used inside a Pipeline Expression (PE) to simplify work. The libraries cover typical day-to-day flows and logics as simple helpers which are embedded into the PE.
Licenses |
| ||||||||||||||||||
Since |
|
Table of Contents | ||
---|---|---|
|
Using a PEL Util
...
Introduction
The PEL Utils is a powerful library of built-in utility methods which can be used inside a Pipeline Expression (PE) to simplify work. The libraries cover typical day-to-day flows and logics as simple helpers which are embedded into the PE.
Info |
---|
Note: In order to understand PEL Utils you should have at least basic knowledge about the Pipeline Expression Language (PEL). |
Using a PEL Util
The structure of calling a PEL Util inside a pipeline looks like this:
Code Block |
---|
#{ @utilName.method(args) } |
Replace utilName
by the name of the utility and method
by the function/method you want to call. See the documentation of the utility which parameters/arguments are supported.
...