| AbsFunction |
Absolute (non-negative) value.
|
| AbstractMinMaxFunction |
|
| AverageFunction |
Returns the average (arithmetic mean) of the numeric arguments.
|
| CeilingFunction |
Rounds the given value to an integer using the rounding mode RoundingMode.CEILING
|
| CoalesceFunction |
|
| FactFunction |
Factorial function, calculates the factorial of a base value.
|
| FloorFunction |
Rounds the given value to an integer using the rounding mode RoundingMode.FLOOR
|
| IfFunction |
Conditional evaluation function.
|
| Log10Function |
The base 10 logarithm of a value
|
| LogFunction |
The natural logarithm (base e) of a value
|
| MaxFunction |
Returns the maximum value of all parameters.
|
| MinFunction |
Returns the minimum value of all parameters.
|
| NotFunction |
Boolean negation function.
|
| RandomFunction |
Random function produces a random value between 0 and 1.
|
| RoundFunction |
Rounds the given value to the specified scale, using the MathContext of the
expression configuration.
|
| SqrtFunction |
Square root function, uses the standard BigDecimal.sqrt(MathContext) implementation.
|
| SumFunction |
Returns the sum value of all parameters.
|
| SwitchFunction |
A function that evaluates one value (or expression) against a list of values, and returns the
result corresponding to the first matching value.
|