| Interface | Description |
|---|---|
| FlowableShortHandExpressionFunction |
Implementations of this interface are both
- a
FlowableFunctionDelegate, allowing to define a custom function to be used in an Expression
- a FlowableExpressionEnhancer, allowing to use a shorthand version of a function that gets expanded
by enhancing the expression string before it gets transformed to an Expression instance. |
| Class | Description |
|---|---|
| AbstractFlowableShortHandExpressionFunction | |
| AbstractFlowableVariableExpressionFunction | |
| AbstractVariableComparatorExpressionFunction | |
| VariableContainsAnyExpressionFunction |
Checks if the value of a variable (fetched using the variableName through the variable scope) contains any of the provided values.
|
| VariableContainsExpressionFunction |
Checks if the value of a variable (fetched using the variableName through the variable scope) contains all of the provided values.
|
| VariableEqualsExpressionFunction |
Compares the value of a variable (fetched using the variableName through the variable scope)
with a value on equality.
|
| VariableExistsExpressionFunction |
Returns whether or not a variable with the given name exists when fetched through the provided variable scope.
|
| VariableGetExpressionFunction |
Returns the value of a variable.
|
| VariableGetOrDefaultExpressionFunction |
Returns the value of a variable, or a default if the value is null.
|
| VariableGreaterThanExpressionFunction | |
| VariableGreaterThanOrEqualsExpressionFunction | |
| VariableIsEmptyExpressionFunction |
Checks if the value of a variable (fetched using the variableName through the variable scope) is empty.
|
| VariableIsNotEmptyExpressionFunction |
Opposite operation of the $
VariableIsEmptyExpressionFunction . |
| VariableLowerThanExpressionFunction | |
| VariableLowerThanOrEqualsExpressionFunction | |
| VariableNotEqualsExpressionFunction |
Compares the value of a variable (fetched using the variableName through the variable scope).
|
| Enum | Description |
|---|---|
| AbstractVariableComparatorExpressionFunction.OPERATOR |
Copyright © 2019 Flowable. All rights reserved.