Uses of Interface
org.modelmapper.Provider
-
Packages that use Provider Package Description org.modelmapper ModelMapper is an intelligent object mapping library.org.modelmapper.builder Expression types for building Mappings and TypeMapsorg.modelmapper.config Configuration typesorg.modelmapper.spi Service Provider Interface -
-
Uses of Provider in org.modelmapper
Classes in org.modelmapper that implement Provider Modifier and Type Class Description class
AbstractProvider<T>
Provider support class.Methods in org.modelmapper that return Provider Modifier and Type Method Description Provider<?>
TypeMap. getPropertyProvider()
Returns the Provider configured for this TypeMap, elsenull
if no Provider has been configured.Provider<D>
TypeMap. getProvider()
Returns the Provider configured for this TypeMap, elsenull
if no Provider has been configured.Methods in org.modelmapper with parameters of type Provider Modifier and Type Method Description TypeMap<S,D>
TypeMap. setPropertyProvider(Provider<?> provider)
Sets theprovider
to be used for providing instances of properties during mapping.TypeMap<S,D>
TypeMap. setProvider(Provider<D> provider)
Sets theprovider
to be used for providing instances of destination typeD
during mapping.protected ConverterExpression<S,D>
PropertyMap. with(Provider<?> provider)
Specifies a provider to be used for providing instances of the mapped property. -
Uses of Provider in org.modelmapper.builder
Methods in org.modelmapper.builder with parameters of type Provider Modifier and Type Method Description ConfigurableConverterExpression<S,D>
ConfigurableProviderExpression. with(Provider<?> provider)
Usesprovider
to instantiate an instance for destination propertyConverterExpression<S,D>
ProviderExpression. with(Provider<?> provider)
Specifies theprovider
to be used for providing instances of the mapped property. -
Uses of Provider in org.modelmapper.config
Methods in org.modelmapper.config that return Provider Modifier and Type Method Description Provider<?>
Configuration. getProvider()
Returns the Provider used for provisioning destination object instances, elsenull
if no Provider has been configured.Methods in org.modelmapper.config with parameters of type Provider Modifier and Type Method Description Configuration
Configuration. setProvider(Provider<?> provider)
Sets theprovider
to use for providing destination object instances. -
Uses of Provider in org.modelmapper.spi
Methods in org.modelmapper.spi that return Provider Modifier and Type Method Description Provider<?>
Mapping. getProvider()
Gets the Provider to use for providing instances of the first destination type.
-