public interface Unmarshaller
Marshaller| Modifier and Type | Method and Description | 
|---|---|
boolean | 
supports(Class<?> clazz)
Indicate whether this unmarshaller can unmarshal instances of the supplied type. 
 | 
Object | 
unmarshal(Source source)
Unmarshal the given  
Source into an object graph. | 
boolean supports(Class<?> clazz)
clazz - the class that this unmarshaller is being asked if it can marshaltrue if this unmarshaller can indeed unmarshal to the supplied class;
 false otherwiseObject unmarshal(Source source) throws IOException, XmlMappingException
Source into an object graph.source - the source to marshal fromIOException - if an I/O error occursXmlMappingException - if the given source cannot be mapped to an object