Java XML JAXB Unmarshaller createUnmarshaller()

Here you can find the source of createUnmarshaller()

Description

create Unmarshaller

License

Apache License

Declaration

public static Unmarshaller createUnmarshaller() throws JAXBException 

Method Source Code


//package com.java2s;
//License from project: Apache License 

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

import javax.xml.bind.Unmarshaller;

public class Main {
    private static JAXBContext jxbc;

    public static Unmarshaller createUnmarshaller() throws JAXBException {
        return jxbc.createUnmarshaller();
    }/*from w w w.  j  a v  a  2  s . c  o  m*/
}

Related

  1. castUnmarshalled(Object unmarshalled, Class clazz)
  2. closeUnmarshaller(Unmarshaller u)
  3. createUnmarshaller()
  4. createUnmarshaller()
  5. createUnmarshaller(Class jaxbBindClass)
  6. createUnmarshaller(Class clazz)
  7. createUnmarshaller(Class clazz)