Uses of Class
org.codehaus.jackson.map.module.SimpleModule
-
Packages that use SimpleModule Package Description org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extensionModule
s (which are registered usingObjectMapper.registerModule(org.codehaus.jackson.map.Module)
. -
-
Uses of SimpleModule in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module that return SimpleModule Modifier and Type Method Description <T> SimpleModule
SimpleModule. addAbstractTypeMapping(Class<T> superType, Class<? extends T> subType)
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete)<T> SimpleModule
SimpleModule. addDeserializer(Class<T> type, JsonDeserializer<? extends T> deser)
SimpleModule
SimpleModule. addKeyDeserializer(Class<?> type, KeyDeserializer deser)
<T> SimpleModule
SimpleModule. addKeySerializer(Class<? extends T> type, JsonSerializer<T> ser)
<T> SimpleModule
SimpleModule. addSerializer(Class<? extends T> type, JsonSerializer<T> ser)
SimpleModule
SimpleModule. addSerializer(JsonSerializer<?> ser)
SimpleModule
SimpleModule. addValueInstantiator(Class<?> beanType, ValueInstantiator inst)
Method for registeringValueInstantiator
to use when deserializing instances of typebeanType
.SimpleModule
SimpleModule. setMixInAnnotation(Class<?> targetType, Class<?> mixinClass)
Method for specifying that annotations define bymixinClass
should be "mixed in" with annotations thattargetType
has (as if they were directly included on it!).
-