Uses of Interface
org.modelmapper.Converter

Packages that use Converter
org.modelmapper ModelMapper is an intelligent object mapping library. 
org.modelmapper.builder Expression types for building Mappings and TypeMaps 
org.modelmapper.internal ModelMapper internals. 
org.modelmapper.spi Service Provider Interface 
 

Uses of Converter in org.modelmapper
 

Classes in org.modelmapper that implement Converter
 class AbstractConverter<S,D>
          Converter support class.
 

Methods in org.modelmapper that return Converter
 Converter<S,D> TypeMap.getConverter()
          Returns the Converter configured for this TypeMap, else null if no Converter has been configured.
 

Methods in org.modelmapper with parameters of type Converter
<S,D> void
ModelMapper.addConverter(Converter<S,D> converter)
          Registers the converter to use when mapping instances of types S to D.
 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.
protected  MapExpression<D> PropertyMap.using(Converter<?,?> converter)
          Specifies the converter to use for converting to the destination property hierarchy.
 

Uses of Converter in org.modelmapper.builder
 

Methods in org.modelmapper.builder with parameters of type Converter
 MapExpression<D> ConverterExpression.using(Converter<?,?> converter)
          Specifies the converter to use for converting to the destination property hierarchy.
 

Uses of Converter in org.modelmapper.internal
 

Methods in org.modelmapper.internal with parameters of type Converter
<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.
 ConditionExpression<S,D> MappingBuilderImpl.using(Converter<?,?> converter)
           
 

Uses of Converter in org.modelmapper.spi
 

Subinterfaces of Converter in org.modelmapper.spi
 interface ConditionalConverter<S,D>
          Converter that converts supported source objects to instances of destination type D.
 

Methods in org.modelmapper.spi that return Converter
 Converter<?,?> Mapping.getConverter()
          Gets the Converter to be used when performing a mapping.
 



Copyright © 2011. All Rights Reserved.