Java XML JAXB Unmarshaller unmarshal(JAXBContext jaxbContext, XMLStreamReader xmlStreamReader)

Here you can find the source of unmarshal(JAXBContext jaxbContext, XMLStreamReader xmlStreamReader)

Description

unmarshal

License

Open Source License

Declaration

public static Object unmarshal(JAXBContext jaxbContext, XMLStreamReader xmlStreamReader) throws JAXBException 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

import javax.xml.stream.XMLStreamReader;

public class Main {
    public static Object unmarshal(JAXBContext jaxbContext, XMLStreamReader xmlStreamReader) throws JAXBException {
        Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
        return unmarshaller.unmarshal(xmlStreamReader);
    }//from   w w  w .  j a  v  a 2 s .c  o  m
}

Related

  1. unmarshal(InputStream inputStream, Class entityClass)
  2. unmarshal(InputStream inputStream, Class type)
  3. unmarshal(InputStream is, Class clazz)
  4. unmarshal(InputStream stream, Class clazz)
  5. unmarshal(JAXBContext context, Class clazz, String source)
  6. unmarshal(org.w3c.dom.Element elem, Class c)
  7. unmarshal(org.w3c.dom.Element elem, Class c)
  8. unmarshal(String b, Class implClass, Class... bc)
  9. unmarshal(String content, Class clasz)