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.defaultPrettyPrintingWriter()
          Factory method for constructing ObjectWriter that will serialize objects using the default pretty printer for indentation
 ObjectWriter ObjectMapper.filteredWriter(FilterProvider filterProvider)
          Factory method for constructing ObjectWriter that will serialize objects using specified filter provider.
 ObjectWriter ObjectMapper.prettyPrintingWriter(PrettyPrinter pp)
          Factory method for constructing ObjectWriter that will serialize objects using specified pretty printer for indentation (or if null, no pretty printer)
 ObjectWriter ObjectMapper.schemaBasedWriter(FormatSchema schema)
          Factory method for constructing ObjectWriter that will pass specific schema object to JsonGenerator used for writing content.
 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.typedWriter(TypeReference<?> 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.withDefaultPrettyPrinter()
          Method that will construct a new instance that will use the default pretty printer for serialization.
 ObjectWriter ObjectWriter.withFilters(FilterProvider filterProvider)
          Method that will construct a new instance that uses specified provider for resolving filter instances by id.
 ObjectWriter ObjectWriter.withPrettyPrinter(PrettyPrinter pp)
          Method that will construct a new instance that will use specified pretty printer (or, if null, will not do any pretty-printing)
 ObjectWriter ObjectWriter.withSchema(FormatSchema schema)
           
 ObjectWriter ObjectWriter.withType(Class<?> rootType)
          Method that will construct a new instance that uses specific type as the root type for serialization, instead of runtime dynamic type of the root object itself.
 ObjectWriter ObjectWriter.withType(JavaType rootType)
          Method that will construct a new instance that uses specific type as the root type for serialization, instead of runtime dynamic type of the root object itself.
 ObjectWriter ObjectWriter.withType(TypeReference<?> rootType)
           
 ObjectWriter ObjectWriter.withView(Class<?> view)
          Method that will construct a new instance that uses specified serialization view for serialization (with null basically disables view processing)
 ObjectWriter ObjectMapper.writer()
          Convenience method for constructing ObjectWriter with default settings.
 

Constructors in org.codehaus.jackson.map with parameters of type ObjectWriter
ObjectWriter(ObjectWriter base, SerializationConfig config)
          Copy constructor used for building variations.
ObjectWriter(ObjectWriter base, SerializationConfig config, JavaType rootType, PrettyPrinter pp, FormatSchema s)
          Copy constructor used for building variations.