Interface Func4Throws<P1,P2,P3,P4,R,E extends Exception>

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 Func4Throws<P1,P2,P3,P4,R,E extends Exception>
Interface for functions that take four parameters and might throw an exception.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(P1 p1, P2 p2, P3 p3, P4 p4)
     
  • Method Details

    • apply

      R apply(P1 p1, P2 p2, P3 p3, P4 p4) throws E
      Throws:
      E