Class JaxbExtensions
- java.lang.Object
- 
- org.apache.groovy.jaxb.extensions.JaxbExtensions
 
- 
 public class JaxbExtensions extends java.lang.ObjectThis class defines new groovy methods which appear on Jaxb-related JDK classes (JAXBContext,Marshaller) inside the Groovy environment. Static methods are used with the first parameter being the destination class.
- 
- 
Constructor SummaryConstructors Constructor Description JaxbExtensions()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> java.lang.Stringmarshal(JAXBContext self, T jaxbElement)Marshall an object to a xmlString.static <T> java.lang.Stringmarshal(Marshaller self, T jaxbElement)Marshall an object to a xmlString.static <T> Tunmarshal(JAXBContext self, java.lang.String xml, java.lang.Class<T> declaredType)Unmarshal xml data from the givenStringto object of the given type.static <T> Tunmarshal(Unmarshaller self, java.lang.String xml, java.lang.Class<T> declaredType)Unmarshal xml data from the givenStringto object of the given type.
 
- 
- 
- 
Method Detail- 
marshalpublic static <T> java.lang.String marshal(Marshaller self, T jaxbElement) throws JAXBException Marshall an object to a xmlString.- Parameters:
- self- a Marshaller which can marshall the type of the given object
- jaxbElement- object to marshall to a- String
- Returns:
- Stringrepresenting the object as xml
- Throws:
- JAXBException
 
 - 
marshalpublic static <T> java.lang.String marshal(JAXBContext self, T jaxbElement) throws JAXBException Marshall an object to a xmlString.- Parameters:
- self- a JaxbContext, which recognizes the type of the given object
- jaxbElement- object to marshall to a- String
- Returns:
- String representing the object as xml
- Throws:
- JAXBException
 
 - 
unmarshalpublic static <T> T unmarshal(Unmarshaller self, java.lang.String xml, java.lang.Class<T> declaredType) throws JAXBException Unmarshal xml data from the givenStringto object of the given type.- Parameters:
- self- Unmarshaller, a Unmarshaller which can unmarshall the type of the given object
- xml- xml data as a- String
- declaredType- appropriate JAXB mapped class to hold node's xml data
- Returns:
- instance of destination class unmarshalled from xml
- Throws:
- JAXBException
 
 - 
unmarshalpublic static <T> T unmarshal(JAXBContext self, java.lang.String xml, java.lang.Class<T> declaredType) throws JAXBException Unmarshal xml data from the givenStringto object of the given type.- Parameters:
- self- a JaxbContext, which recognizes the type of the given object
- xml- xml data as a- String
- declaredType- appropriate JAXB mapped class to hold node's xml data
- Returns:
- instance of destination class unmarshalled from xml
- Throws:
- JAXBException
 
 
- 
 
-