Interface FeelToJuelFunctionTransformer
-
- All Superinterfaces:
FeelToJuelTransformer
public interface FeelToJuelFunctionTransformer extends FeelToJuelTransformer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.reflect.MethodgetMethod()Get the method reference which implements the function to transform to.java.lang.StringgetName()Get the name of the function.-
Methods inherited from interface org.camunda.bpm.dmn.feel.impl.juel.transform.FeelToJuelTransformer
canTransform, transform
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the name of the function.- Returns:
- the name of function
-
getMethod
java.lang.reflect.Method getMethod()
Get the method reference which implements the function to transform to. Note: The implementation should resolve the method reference only once at creation and not within every call of these method.- Returns:
- the method reference
-
-