Uses of Class
org.codehaus.jackson.map.ObjectMapper.DefaultTyping

Packages that use ObjectMapper.DefaultTyping
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 via ObjectMapper class, as well as convenience methods included in JsonParser 
 

Uses of ObjectMapper.DefaultTyping in org.codehaus.jackson.map
 

Fields in org.codehaus.jackson.map declared as ObjectMapper.DefaultTyping
protected  ObjectMapper.DefaultTyping ObjectMapper.DefaultTypeResolverBuilder._appliesFor
          Definition of what types is this default typer valid for.
 

Methods in org.codehaus.jackson.map that return ObjectMapper.DefaultTyping
static ObjectMapper.DefaultTyping ObjectMapper.DefaultTyping.valueOf(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
 ObjectMapper ObjectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping dti)
          Convenience method that is equivalant to calling
 ObjectMapper ObjectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping dti, JsonTypeInfo.As includeAs)
           
 

Constructors in org.codehaus.jackson.map with parameters of type ObjectMapper.DefaultTyping
ObjectMapper.DefaultTypeResolverBuilder(ObjectMapper.DefaultTyping t)