public class StringDataFormat extends Object implements DataFormat
| Constructor and Description |
|---|
StringDataFormat() |
StringDataFormat(String charset) |
| Modifier and Type | Method and Description |
|---|---|
String |
getCharset() |
void |
marshal(Exchange exchange,
Object graph,
OutputStream stream)
Marshals the object to the given Stream.
|
void |
setCharset(String charset) |
Object |
unmarshal(Exchange exchange,
InputStream stream)
Unmarshals the given stream into an object.
|
public StringDataFormat()
public StringDataFormat(String charset)
public String getCharset()
public void setCharset(String charset)
public void marshal(Exchange exchange, Object graph, OutputStream stream) throws IOException
DataFormatmarshal in interface DataFormatexchange - the current exchangegraph - the object to be marshalledstream - the output stream to write the marshalled result toIOExceptionpublic Object unmarshal(Exchange exchange, InputStream stream) throws IOException
DataFormatMessage object as well which will be used as the OUT message of exchange.unmarshal in interface DataFormatexchange - the current exchangestream - the input stream with the object to be unmarshalledIOExceptionApache Camel