Also: SpringCore
public interface

ConverterFactory

org.springframework.core.convert.converter.ConverterFactory<S, R>

Class Overview

A factory for "ranged" converters that can convert objects from S to subtypes of R.

Summary

Public Methods
abstract <T extends R> Converter<S, T> getConverter(Class<T> targetType)
Get the converter to convert from S to target type T, where T is also an instance of R.

Public Methods

public abstract Converter<S, T> getConverter (Class<T> targetType)

Also: SpringCore

Get the converter to convert from S to target type T, where T is also an instance of R.

Parameters
targetType the target type to convert to
Returns
  • A converter from S to T