org.exparity.data.xml.XmlMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exparity-data Show documentation
Show all versions of exparity-data Show documentation
Data scraping and manipulation utilities for Java
The newest version!
/*
*
*/
package org.exparity.data.xml;
import org.exparity.data.BadFormatException;
import org.exparity.data.XML;
/**
* @author Stewart Bissett
*/
public interface XmlMarshaller {
public T unmarshal(final XML xml) throws BadFormatException, MarshallFailedException;
public XML marshall(final T raw) throws MarshallFailedException;
}