Interface ExpressionManager

    • Method Detail

      • createExpression

        Expression createExpression​(String expression)
        Parameters:
        expression -
        Returns:
        a parsed expression
      • addFunction

        void addFunction​(String name,
                         Method function)

        Adds a custom function to the expression manager that can be used in expression evaluation later on. Ideally, use this in the setup phase of the expression manager, i.e. before the first invocation of createExpression.

        Parameters:
        name -
        function -