Interface Operation<R>

Type Parameters:
R - the return type of the operation.
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 interface Operation<R>
Represents an operation (method call or field get/set) that has been wrapped by WrapOperation. This may either be the operation the user targeted originally, or a wrapped version of it, allowing for chaining.
  • Method Summary

    Modifier and Type
    Method
    Description
    call(Object... args)
     
  • Method Details