Interface FeelCustomFunctionProvider
-
public interface FeelCustomFunctionProvider
Provides one or more functions which can be used in an FEEL expression.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<java.lang.String>
getFunctionNames()
Returns the names of all functions.java.util.Optional<CustomFunction>
resolveFunction(java.lang.String functionName)
Returns the function for the given name.
-
-
-
Method Detail
-
resolveFunction
java.util.Optional<CustomFunction> resolveFunction(java.lang.String functionName)
Returns the function for the given name.- Parameters:
functionName
- the name of the function- Returns:
- the function or
Optional.empty()
, if no function is provided for this name
-
getFunctionNames
java.util.Collection<java.lang.String> getFunctionNames()
Returns the names of all functions.- Returns:
- the names of all functions
-
-