Java javax.xml.bind JAXB fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.bind JAXB fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.bind JAXB.

The text is from its open source code.

Method

voidmarshal(Object jaxbObject, File xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, URL xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, URI xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, String xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, OutputStream xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, Writer xml)
Writes a Java object tree to XML and store it to the specified location.
voidmarshal(Object jaxbObject, Result xml)
Writes a Java object tree to XML and store it to the specified location.
Tunmarshal(File xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(URL xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(URI xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(String xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(InputStream xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(Reader xml, Class type)
Reads in a Java object tree from the given XML input.
Tunmarshal(Source xml, Class type)
Reads in a Java object tree from the given XML input.