Package org.camunda.spin.spi
Interface DataFormatWriter
- All Known Implementing Classes:
DomXmlDataFormatWriter
,JacksonJsonDataFormatWriter
public interface DataFormatWriter
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writeToWriter
(Writer writer, Object input) Writes the internal representation, as provided byinput
to the suppliedwriter
according to the data format that the implementation belongs to.
-
Method Details
-
writeToWriter
Writes the internal representation, as provided byinput
to the suppliedwriter
according to the data format that the implementation belongs to. For example, an XML data format writer writes XML.- Parameters:
writer
- The writer to write the output toinput
- The object to write. Can be safely cast to the internal format of the data format.
-