Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Status
colourYellow
titleCOMMUNITY
,
Status
colourBlue
titleENTERPRISE
,
Status
colourPurple
titleCORPORATE

Since

Status
colourGreen
titleVERSION 6.0

Table of Contents
maxLevel3

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.

...