Package org.modelmapper.builder
Interface ConfigurableProviderExpression<S,D>
- All Superinterfaces:
ConfigurableConverterExpression<S,,D> ReferenceMapExpression<S,D>
- All Known Subinterfaces:
ConfigurableConditionExpression<S,D>
-
Method Summary
Modifier and TypeMethodDescriptionUsesproviderto instantiate an instance for destination propertyMethods inherited from interface org.modelmapper.builder.ConfigurableConverterExpression
usingMethods inherited from interface org.modelmapper.builder.ReferenceMapExpression
map, skip, skip
-
Method Details
-
with
Usesproviderto instantiate an instance for destination propertywith(provider).<String>map(Src::getCustomer, Dest::setCustomer) with(req -> new Customer()).<Customer>map(Src::getCustomer, Dest::setCustomer)- Parameters:
provider- a provider instantiate destination property
-