Interface FeelToJuelTransform
- All Known Implementing Classes:
FeelToJuelTransformImpl
public interface FeelToJuelTransform
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddCustomFunctionTransformer(FeelToJuelTransformer functionTransformer) Add a transformer for a custom function.transformEndpoint(String endpoint, String inputName) Transform a FEEL endpoint expression to a JUEL expression.transformSimplePositiveUnaryTest(String simplePositiveUnaryTest, String inputName) Transform a FEEL simple positive unary test expression to a JUEL expression.transformSimplePositiveUnaryTests(String simplePositiveUnaryTests, String inputName) Transform a FEEL simple positive unary tests expression to a JUEL expression.transformSimpleUnaryTests(String simpleUnaryTests, String inputName) Transform a FEEL simple unary tests expression to a JUEL expression.
-
Method Details
-
transformSimpleUnaryTests
Transform a FEEL simple unary tests expression to a JUEL expression.- Parameters:
simpleUnaryTests- the FEEL simple unary tests expression to transforminputName- the variable name of the input variable to test against- Returns:
- the resulting JUEL expression
-
transformSimplePositiveUnaryTests
Transform a FEEL simple positive unary tests expression to a JUEL expression.- Parameters:
simplePositiveUnaryTests- the FEEL simple positive unary tests expression to transforminputName- the variable name of the input variable to test against- Returns:
- the resulting JUEL expression
-
transformSimplePositiveUnaryTest
Transform a FEEL simple positive unary test expression to a JUEL expression.- Parameters:
simplePositiveUnaryTest- the FEEL simple positive unary test expression to transforminputName- the variable name of the input variable to test against- Returns:
- the resulting JUEL expression
-
transformEndpoint
Transform a FEEL endpoint expression to a JUEL expression.- Parameters:
endpoint- the FEEL endpoint expression to transforminputName- the variable name of the input variable to test against- Returns:
- the resulting JUEL expression
-
addCustomFunctionTransformer
Add a transformer for a custom function.- Parameters:
functionTransformer- the transformer for the custom function
-