com.fasterxml.jackson.databind.module
Class SimpleKeyDeserializers
java.lang.Object
com.fasterxml.jackson.databind.module.SimpleKeyDeserializers
- All Implemented Interfaces:
- KeyDeserializers
public class SimpleKeyDeserializers
- extends Object
- implements KeyDeserializers
Simple implementation KeyDeserializers
which allows registration of
deserializers based on raw (type erased class).
It can work well for basic bean and scalar type deserializers, but is not
a good fit for handling generic types (like Map
s and Collection
s
or array types).
Unlike SimpleSerializers
, this class does not currently support generic mappings;
all mappings must be to exact declared deserialization type.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_classMappings
protected HashMap<ClassKey,KeyDeserializer> _classMappings
SimpleKeyDeserializers
public SimpleKeyDeserializers()
addDeserializer
public SimpleKeyDeserializers addDeserializer(Class<?> forClass,
KeyDeserializer deser)
findKeyDeserializer
public KeyDeserializer findKeyDeserializer(JavaType type,
DeserializationConfig config,
BeanDescription beanDesc)
- Specified by:
findKeyDeserializer
in interface KeyDeserializers
Copyright © 2012 fasterxml.com. All Rights Reserved.