Interface ObjectWriterFactory


public interface ObjectWriterFactory
A strategy for creating an ObjectWriter for a given type.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.fasterxml.jackson.databind.ObjectWriter
    createWriter(com.fasterxml.jackson.databind.ObjectMapper mapper, TypeRef<?> type)
    Uses the given mapper to create an ObjectWriter for the given type.
     
  • Method Details

    • createWriter

      com.fasterxml.jackson.databind.ObjectWriter createWriter(com.fasterxml.jackson.databind.ObjectMapper mapper, TypeRef<?> type)
      Uses the given mapper to create an ObjectWriter for the given type.
    • getDefault

      static ObjectWriterFactory getDefault()