| Methods in ma.glasnost.orika that return BoundMapperFacade |
|
MapperFactory.getMapperFacade(Class<A> aType,
Class<B> bType)
Returns a BoundMapperFacade for the specified source and destination
types; this mapper is bidirectional by default, and provides signatures for
mapping in place, or with instantiation, as needed. |
|
MapperFactory.getMapperFacade(Class<A> aType,
Class<B> bType,
boolean containsCycles)
Returns a BoundMapperFacade for the specified source and destination
types; this mapper is bidirectional by default, and provides signatures for
mapping in place, or with instantiation, as needed.
In the case that false is provided for the 'containsCycles' parameter,
an optimized mapper instance will be provided. |
|
MapperFactory.getMapperFacade(Type<A> aType,
Type<B> bType)
Returns a BoundMapperFacade for the specified source and destination
types; this mapper is bidirectional by default, and provides signatures for
mapping in place, or with instantiation, as needed. |
|
MapperFactory.getMapperFacade(Type<A> aType,
Type<B> bType,
boolean containsCycles)
Returns a BoundMapperFacade for the specified source and destination
types; this mapper is bidirectional by default, and provides signatures for
mapping in place, or with instantiation, as needed.
In the case that false is provided for the 'containsCycles' parameter,
an optimized mapper instance will be provided. |
| Methods in ma.glasnost.orika.impl that return BoundMapperFacade |
|
ConfigurableMapper.dedicatedMapperFor(Class<A> aType,
Class<B> bType)
|
|
ConfigurableMapper.dedicatedMapperFor(Class<A> aType,
Class<B> bType,
boolean containsCycles)
|
|
ConfigurableMapper.dedicatedMapperFor(Type<S> sourceType,
Type<D> destinationType)
|
|
ConfigurableMapper.dedicatedMapperFor(Type<S> sourceType,
Type<D> destinationType,
boolean containsCycles)
|
|
DefaultMapperFactory.getMapperFacade(Class<A> aType,
Class<B> bType)
|
|
DefaultMapperFactory.getMapperFacade(Class<A> aType,
Class<B> bType,
boolean containsCycles)
|
|
DefaultMapperFactory.getMapperFacade(Type<S> sourceType,
Type<D> destinationType)
|
|
DefaultMapperFactory.getMapperFacade(Type<S> sourceType,
Type<D> destinationType,
boolean containsCycles)
|