类 MapToMapConverter

java.lang.Object
cn.taketoday.core.conversion.support.MapToMapConverter
所有已实现的接口:
ConditionalConverter, ConditionalGenericConverter, GenericConverter

final class MapToMapConverter extends Object implements ConditionalGenericConverter
Converts a Map to another Map.

First, creates a new Map of the requested targetType with a size equal to the size of the source Map. Then copies each element in the source map to the target map. Will perform a conversion from the source maps's parameterized K,V types to the target map's parameterized types K,V if necessary.

从以下版本开始:
3.0
作者:
Keith Donald, Juergen Hoeller