com.thoughtworks.xstream.converters.Converter Maven / Gradle / Ivy
Show all versions of org.apache.servicemix.bundles.xstream
/*
* Copyright (C) 2003, 2004 Joe Walnes.
* Copyright (C) 2006, 2007, 2013 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 26. September 2003 by Joe Walnes
*/
package com.thoughtworks.xstream.converters;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
/**
* Converter implementations are responsible marshalling Java objects
* to/from textual data.
*
* If an exception occurs during processing, a {@link ConversionException}
* should be thrown.
*
* If working with the high level {@link com.thoughtworks.xstream.XStream} facade,
* you can register new converters using the XStream.registerConverter() method.
*
* If working with the lower level API, the
* {@link com.thoughtworks.xstream.converters.ConverterLookup} implementation is
* responsible for looking up the appropriate converter.
*
* Converters for object that can store all information in a single value
* should implement {@link com.thoughtworks.xstream.converters.SingleValueConverter}.
* {@link com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter}
* provides a starting point.
*
* {@link com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter}
* provides a starting point for objects that hold a collection of other objects
* (such as Lists and Maps).
*
* @author Joe Walnes
* @see com.thoughtworks.xstream.XStream
* @see com.thoughtworks.xstream.converters.ConverterLookup
* @see com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter
* @see com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter
*/
public interface Converter extends ConverterMatcher {
/**
* Convert an object to textual data.
*
* @param source The object to be marshalled.
* @param writer A stream to write to.
* @param context A context that allows nested objects to be processed by XStream.
*/
void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context);
/**
* Convert textual data back into an object.
*
* @param reader The stream to read the text from.
* @param context
* @return The resulting object.
*/
Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context);
}