Uses of Class
org.codehaus.jackson.map.ObjectWriter

Packages that use ObjectWriter
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 ObjectWriter in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map that return ObjectWriter
 ObjectWriter ObjectMapper.typedWriter(Class<?> rootType)
          Factory method for constructing ObjectWriter that will serialize objects using specified root type, instead of actual runtime type of value.
 ObjectWriter ObjectMapper.typedWriter(JavaType rootType)
          Factory method for constructing ObjectWriter that will serialize objects using specified root type, instead of actual runtime type of value.
 ObjectWriter ObjectMapper.viewWriter(Class<?> serializationView)
          Factory method for constructing ObjectWriter that will serialize objects using specified JSON View (filter).
 ObjectWriter ObjectWriter.withType(Class<?> rootType)
           
 ObjectWriter ObjectWriter.withType(JavaType rootType)
           
 ObjectWriter ObjectWriter.withView(Class<?> view)
           
 

Constructors in org.codehaus.jackson.map with parameters of type ObjectWriter
ObjectWriter(ObjectWriter base, SerializationConfig config, Class<?> view, JavaType rootType)
          Copy constructor used for building variations.