Package org.modelmapper
Interface ExpressionMap<S,D>
-
- Type Parameters:
S
- source typeD
- destination type
public interface ExpressionMap<S,D>
Represents an operation that acceptsmapping
and use functions defined inConfigurableConditionExpression
to configure aTypeMap
modelMapper.addMappings(mapper -> { mapper.map(Src::getA, Dest::setB); mapper.using(converter).map(Src::getC, Dest::setD); })
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
configure(ConfigurableConditionExpression<S,D> mapping)
Performs the operation to configureTypeMap
-
-
-
Method Detail
-
configure
void configure(ConfigurableConditionExpression<S,D> mapping)
Performs the operation to configureTypeMap
-
-