| Modifier and Type | Optional Element and Description | 
|---|---|
| String | keyDateFormatA format string as processable by  SimpleDateFormatif the annotated method maps from a map with key typeStringto an map with key typeDateor vice-versa. | 
| Class<? extends Annotation>[] | keyQualifiedByA key value qualifier can be specified to aid the selection process of a suitable mapper. | 
| Class<?> | keyTargetTypeSpecifies the type of the key to be used in the result of the mapping method in case multiple mapping
 methods qualify. | 
| NullValueMappingStrategy | nullValueMappingStrategyThe strategy to be applied when  nullis passed as source value to this map mapping. | 
| String | valueDateFormatA format string as processable by  SimpleDateFormatif the annotated method maps from a map with value
 typeStringto an map with value typeDateor vice-versa. | 
| Class<? extends Annotation>[] | valueQualifiedByA value qualifier can be specified to aid the selection process of a suitable mapper for the values in the map. | 
| Class<?> | valueTargetTypeSpecifies the type of the value to be used in the result of the mapping method in case multiple mapping
 methods qualify. | 
public abstract String keyDateFormat
SimpleDateFormat if the annotated method maps from a map with key type
 String to an map with key type Date or vice-versa. Will be ignored for all other key types.SimpleDateFormat.public abstract String valueDateFormat
SimpleDateFormat if the annotated method maps from a map with value
 type String to an map with value type Date or vice-versa. Will be ignored for all other value
 types.SimpleDateFormat.public abstract Class<? extends Annotation>[] keyQualifiedBy
public abstract Class<? extends Annotation>[] valueQualifiedBy
A qualifier is a custom annotation and can be placed on either a hand written mapper class or a method.
public abstract Class<?> keyTargetType
public abstract Class<?> valueTargetType
public abstract NullValueMappingStrategy nullValueMappingStrategy
null is passed as source value to this map mapping. If no
 strategy is configured, the strategy given via MapperConfig.nullValueMappingStrategy() or
 Mapper.nullValueMappingStrategy() will be applied, using NullValueMappingStrategy.RETURN_NULL
 by default.null is passed as source value to the methods of this mapping.Copyright © 2012-2015 Gunnar Morling; All rights reserved. Released under the Apache Software License 2.0.