Interface ExpressionMap<S,​D>

  • Type Parameters:
    S - source type
    D - destination type

    public interface ExpressionMap<S,​D>
    Represents an operation that accepts mapping and use functions defined in ConfigurableConditionExpression to configure a TypeMap
       modelMapper.addMappings(mapper -> {
         mapper.map(Src::getA, Dest::setB);
         mapper.using(converter).map(Src::getC, Dest::setD);
       })