Uses of Class
org.codehaus.jackson.map.ObjectMapper.DefaultTyping
-
Packages that use ObjectMapper.DefaultTyping Package Description org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParser -
-
Uses of ObjectMapper.DefaultTyping in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as ObjectMapper.DefaultTyping Modifier and Type Field Description protected ObjectMapper.DefaultTypingObjectMapper.DefaultTypeResolverBuilder. _appliesForDefinition of what types is this default typer valid for.Methods in org.codehaus.jackson.map that return ObjectMapper.DefaultTyping Modifier and Type Method Description static ObjectMapper.DefaultTypingObjectMapper.DefaultTyping. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ObjectMapper.DefaultTyping[]ObjectMapper.DefaultTyping. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.codehaus.jackson.map with parameters of type ObjectMapper.DefaultTyping Modifier and Type Method Description ObjectMapperObjectMapper. enableDefaultTyping(ObjectMapper.DefaultTyping dti)Convenience method that is equivalent to callingObjectMapperObjectMapper. enableDefaultTyping(ObjectMapper.DefaultTyping applicability, JsonTypeInfo.As includeAs)Method for enabling automatic inclusion of type information, needed for proper deserialization of polymorphic types (unless types have been annotated withJsonTypeInfo).ObjectMapperObjectMapper. enableDefaultTypingAsProperty(ObjectMapper.DefaultTyping applicability, java.lang.String propertyName)Method for enabling automatic inclusion of type information -- needed for proper deserialization of polymorphic types (unless types have been annotated withJsonTypeInfo) -- using "As.PROPERTY" inclusion mechanism and specified property name to use for inclusion (default being "@class" since default type information always uses class name as type identifier)Constructors in org.codehaus.jackson.map with parameters of type ObjectMapper.DefaultTyping Constructor Description DefaultTypeResolverBuilder(ObjectMapper.DefaultTyping t)
-