Interface ELMethodRegistry.Call2<T,A,B,R>

Type Parameters:
T - The type declaring the method
A - The type of the first argument
B - The type of the second argument
R - The return type
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.Call2<T,A,B,R> extends Serializable
Invokes an instance method taking two arguments.
Since:
1.1
Author:
Denis Stepanov
  • Method Summary

    Modifier and Type
    Method
    Description
    call(T base, @Nullable A first, @Nullable B second)
    Invokes the method.
  • Method Details

    • call

      R call(T base, @Nullable A first, @Nullable B second)
      Invokes the method.
      Parameters:
      base - The instance
      first - The first argument
      second - The second argument
      Returns:
      The result