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 TypeMethodDescriptionUsesprovider
to instantiate an instance for destination propertyMethods inherited from interface org.modelmapper.builder.ConfigurableConverterExpression
using
Methods inherited from interface org.modelmapper.builder.ReferenceMapExpression
map, skip, skip
-
Method Details
-
with
Usesprovider
to 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
-