Class FunctionReference

java.lang.Object
org.springframework.expression.spel.ast.SpelNodeImpl
org.springframework.expression.spel.ast.FunctionReference
All Implemented Interfaces:
Opcodes, SpelNode

public class FunctionReference extends SpelNodeImpl
A function reference is of the form "#someFunction(a,b,c)".

Functions can be either a Method (for static Java methods) or a MethodHandle and must be registered in the context prior to evaluation of the expression. See the registerFunction() methods in StandardEvaluationContext for details.

Since:
3.0
Author:
Andy Clement, Juergen Hoeller, Simon Baslé, Sam Brannen
See Also: