Class JacksonJsonDataFormatWriter

java.lang.Object
org.camunda.spin.impl.json.jackson.format.JacksonJsonDataFormatWriter
All Implemented Interfaces:
DataFormatWriter

public class JacksonJsonDataFormatWriter extends Object implements DataFormatWriter
Author:
Daniel Meyer
  • Field Details

  • Constructor Details

  • Method Details

    • writeToWriter

      public void writeToWriter(Writer writer, Object input)
      Description copied from interface: DataFormatWriter
      Writes the internal representation, as provided by input to the supplied writer according to the data format that the implementation belongs to. For example, an XML data format writer writes XML.
      Specified by:
      writeToWriter in interface DataFormatWriter
      Parameters:
      writer - The writer to write the output to
      input - The object to write. Can be safely cast to the internal format of the data format.