Class BeanMapperConverterAdapter

java.lang.Object
io.beanmapper.spring.converter.BeanMapperConverterAdapter
All Implemented Interfaces:
org.springframework.core.convert.converter.GenericConverter

public class BeanMapperConverterAdapter extends Object implements org.springframework.core.convert.converter.GenericConverter
Adapter that allows the bean mapper to be used in the spring conversion service.
Since:
Aug 21, 2015
Author:
Jeroen van Schagen
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.springframework.core.convert.converter.GenericConverter

    org.springframework.core.convert.converter.GenericConverter.ConvertiblePair
  • Constructor Summary

    Constructors
    Constructor
    Description
    BeanMapperConverterAdapter(io.beanmapper.BeanMapper beanMapper)
    Construct a new instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(Object source, org.springframework.core.convert.TypeDescriptor sourceType, org.springframework.core.convert.TypeDescriptor targetType)
    Set<org.springframework.core.convert.converter.GenericConverter.ConvertiblePair>

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • BeanMapperConverterAdapter

      public BeanMapperConverterAdapter(io.beanmapper.BeanMapper beanMapper)
      Construct a new instance.
      Parameters:
      beanMapper - the bean mapper
  • Method Details

    • getConvertibleTypes

      public Set<org.springframework.core.convert.converter.GenericConverter.ConvertiblePair> getConvertibleTypes()
      Specified by:
      getConvertibleTypes in interface org.springframework.core.convert.converter.GenericConverter
    • convert

      public Object convert(Object source, org.springframework.core.convert.TypeDescriptor sourceType, org.springframework.core.convert.TypeDescriptor targetType)
      Specified by:
      convert in interface org.springframework.core.convert.converter.GenericConverter