Interface ELMethodRegistry.Invocation

All Superinterfaces:
Serializable
Enclosing class:
ELMethodRegistry
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface ELMethodRegistry.Invocation extends Serializable
Invokes a registered method of any arity.
Since:
1.1
Author:
Denis Stepanov
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable Object
    invoke(jakarta.el.ELContext context, @Nullable Object base, Object[] arguments)
    Invokes the method.
  • Method Details

    • invoke

      @Nullable Object invoke(jakarta.el.ELContext context, @Nullable Object base, Object[] arguments)
      Invokes the method.
      Parameters:
      context - The context
      base - The instance, or null for a static method, a constructor or a function
      arguments - The arguments, coerced to the declared parameter types
      Returns:
      The result