Interface ELMethodRegistry.Lambda<T>

Type Parameters:
T - The functional interface
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.Lambda<T> extends Serializable
Builds an instance of a functional interface that runs a lambda expression.
Since:
1.1
Author:
Denis Stepanov
  • Method Summary

    Modifier and Type
    Method
    Description
    create(@Nullable jakarta.el.ELContext context, jakarta.el.LambdaExpression lambda)
    Builds the instance.
  • Method Details

    • create

      T create(@Nullable jakarta.el.ELContext context, jakarta.el.LambdaExpression lambda)
      Builds the instance.
      Parameters:
      context - The context, or null when the lambda carries its own
      lambda - The lambda expression
      Returns:
      The instance of the functional interface