Uses of Interface
org.modelmapper.TypeMap

Packages that use TypeMap
org.modelmapper ModelMapper is an intelligent object mapping library. 
org.modelmapper.internal ModelMapper internals. 
org.modelmapper.spi Service Provider Interface 
 

Uses of TypeMap in org.modelmapper
 

Methods in org.modelmapper that return TypeMap
<S,D> TypeMap<S,D>
ModelMapper.addMappings(PropertyMap<S,D> propertyMap)
          Adds mappings from the propertyMap into the TypeMap corresponding to source type S and destination type D.
<S,D> TypeMap<S,D>
ModelMapper.createTypeMap(Class<S> sourceType, Class<D> destinationType)
          Creates a TypeMap for the sourceType and destinationType using the ModelMapper's configuration.
<S,D> TypeMap<S,D>
ModelMapper.createTypeMap(Class<S> sourceType, Class<D> destinationType, Configuration configuration)
          Creates a TypeMap for the sourceType and destinationType using the given configuration.
<S,D> TypeMap<S,D>
ModelMapper.getTypeMap(Class<S> sourceType, Class<D> destinationType)
          Returns the TypeMap for the sourceType and destinationType, else returns null if none exists.
 TypeMap<S,D> TypeMap.setCondition(Condition<?,?> condition)
          Sets the condition that must apply in order for mapping to take place.
 TypeMap<S,D> TypeMap.setConverter(Converter<S,D> converter)
          Sets the converter to be used for any conversion requests for the TypeMap's source to destination type.
 TypeMap<S,D> TypeMap.setProvider(Provider<D> provider)
          Sets the provider to be used for providing instances of destination type D during mapping.
 

Methods in org.modelmapper that return types with arguments of type TypeMap
 Collection<TypeMap<?,?>> ModelMapper.getTypeMaps()
          Returns all TypeMaps for the ModelMapper.
 

Uses of TypeMap in org.modelmapper.internal
 

Methods in org.modelmapper.internal that return TypeMap
<S,D> TypeMap<S,D>
TypeMapStore.create(Class<S> sourceType, Class<D> destinationType, Configuration configuration, MappingEngineImpl engine)
          Gets or creates a TypeMap.
<S,D> TypeMap<S,D>
TypeMapStore.get(Class<S> sourceType, Class<D> destinationType)
          Returns a TypeMap for the sourceType and destinationType, else null if none exists.
<S,D> TypeMap<S,D>
TypeMapStore.getOrCreate(Class<S> sourceType, Class<D> destinationType, MappingEngineImpl engine)
          Gets or creates a TypeMap.
<S,D> TypeMap<S,D>
TypeMapStore.getOrCreate(Class<S> sourceType, Class<D> destinationType, PropertyMap<S,D> propertyMap, Converter<S,D> converter, MappingEngineImpl engine)
          Gets or creates a TypeMap.
 TypeMap<S,D> MappingContextImpl.typeMap()
           
 

Methods in org.modelmapper.internal that return types with arguments of type TypeMap
 Collection<TypeMap<?,?>> TypeMapStore.get()
           
 

Methods in org.modelmapper.internal with parameters of type TypeMap
 Errors Errors.errorUnmappedProperties(TypeMap<?,?> typeMap, List<PropertyInfo> unmappedProperties)
           
 

Uses of TypeMap in org.modelmapper.spi
 

Methods in org.modelmapper.spi that return TypeMap
 TypeMap<S,D> MappingContext.typeMap()
          Returns the TypeMap associated with the mapping request else null if the request did not originate from a TypeMap.
 



Copyright © 2011. All Rights Reserved.