Interface Map5<A,B,C,D,E,T>

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 Map5<A,B,C,D,E,T>
Maps 5 objects of type A, B, C, D and E respectively to an object of type T.
  • Method Summary

    Modifier and Type
    Method
    Description
    map(A a, B b, C c, D d, E e)
    Maps a, b, c, d and e to the target object.
  • Method Details

    • map

      T map(A a, B b, C c, D d, E e)
      Maps a, b, c, d and e to the target object.