Uses of Class
org.codehaus.jackson.map.module.SimpleAbstractTypeResolver
-
Packages that use SimpleAbstractTypeResolver 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 SimpleAbstractTypeResolver in org.codehaus.jackson.map.module
Fields in org.codehaus.jackson.map.module declared as SimpleAbstractTypeResolver Modifier and Type Field Description protected SimpleAbstractTypeResolver
SimpleModule. _abstractTypes
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete)Methods in org.codehaus.jackson.map.module that return SimpleAbstractTypeResolver Modifier and Type Method Description <T> SimpleAbstractTypeResolver
SimpleAbstractTypeResolver. addMapping(Class<T> superType, Class<? extends T> subType)
Method for adding a mapping from super type to specific subtype.Methods in org.codehaus.jackson.map.module with parameters of type SimpleAbstractTypeResolver Modifier and Type Method Description void
SimpleModule. setAbstractTypes(SimpleAbstractTypeResolver atr)
Resets currently configured abstract type mappings
-