Uses of Class
org.codehaus.jackson.map.module.SimpleModule
Packages that use SimpleModule
Package
Description
Package that contains classes and interfaces to help implement
custom extension
Modules
(which are registered using
ObjectMapper.registerModule(org.codehaus.jackson.map.Module).-
Uses of SimpleModule in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module that return SimpleModuleModifier and TypeMethodDescription<T> SimpleModuleSimpleModule.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> SimpleModuleSimpleModule.addDeserializer(Class<T> type, JsonDeserializer<? extends T> deser) SimpleModule.addKeyDeserializer(Class<?> type, KeyDeserializer deser) <T> SimpleModuleSimpleModule.addKeySerializer(Class<? extends T> type, JsonSerializer<T> ser) <T> SimpleModuleSimpleModule.addSerializer(Class<? extends T> type, JsonSerializer<T> ser) SimpleModule.addSerializer(JsonSerializer<?> ser) SimpleModule.addValueInstantiator(Class<?> beanType, ValueInstantiator inst) Method for registeringValueInstantiatorto use when deserializing instances of typebeanType.SimpleModule.setMixInAnnotation(Class<?> targetType, Class<?> mixinClass) Method for specifying that annotations define bymixinClassshould be "mixed in" with annotations thattargetTypehas (as if they were directly included on it!).