Interface ConditionParser.ExpressionFunction

Enclosing class:
ConditionParser

public static interface ConditionParser.ExpressionFunction
A functional interface that represents an expression function to be applied to a list of arguments. Implementers can define custom functions.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(List<Object> args)
    Applies the function to the given list of arguments.
  • Method Details

    • apply

      Object apply(List<Object> args)
      Applies the function to the given list of arguments.
      Parameters:
      args - the list of arguments passed to the function
      Returns:
      the result of applying the function