Transforms provide a mapping or transforming an input value into a different output value. Several standard transforms are provided out-of-the-box and you can create your own custom transforms.

decode
url decodes the input.
encode
url encodes the input.
lower
lower-cases the input.
upper
upper-cases the input.
base64
encodes the input as BASE-64.
base64decode
decodes the input from BASE-64.
Static Mapping transform
provides a simple way of mapping one value to another
Create your own custom transform
you can easily extend the component by implementing your own transforms.