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 Detail

      • map

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