Interface Mapper<OUT,​IN>

  • 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 Mapper<OUT,​IN>
    Most commonly used to materialize the mapper pattern.
    Since:
    29 mai 2017
    • Method Detail

      • mapping

        OUT mapping​(IN data)