Interface MapperDecorator.MapperOperation<I,O>

Type Parameters:
I - the input type
O - the output type
Enclosing interface:
MapperDecorator<A,B>
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 static interface MapperDecorator.MapperOperation<I,O>
Underlying mapper operation.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(I value, MappingContext ctx)
    Executes the mapping operation.
  • Method Details

    • apply

      O apply(I value, MappingContext ctx)
      Executes the mapping operation.
      Parameters:
      value - the input value
      ctx - the mapping context
      Returns:
      the mapped result