Example usage for org.springframework.core.convert ConversionService interface-usage

List of usage examples for org.springframework.core.convert ConversionService interface-usage

Introduction

In this page you can find the example usage for org.springframework.core.convert ConversionService interface-usage.

Usage

From source file org.talend.dataprep.conversions.BeanConversionService.java

/**
 * This service provides methods to convert beans to other beans (DTOs, transient beans...). This service helps code to
 * separate between core business code and representations for various use cases.
 */
@Service
public class BeanConversionService implements ConversionService {

From source file org.springframework.core.convert.support.GenericConversionService.java

/**
 * Base {@link ConversionService} implementation suitable for use in most environments.
 * Implements {@link ConverterRegistry} as registration API.
 *
 * @author Keith Donald
 * @author Juergen Hoeller