All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.bind.Unmarshaller Maven / Gradle / Ivy

There is a newer version: 6.0-6
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package javax.xml.bind;

import java.io.File;
import java.io.InputStream;
import java.io.Reader;
import java.net.URL;

import javax.xml.bind.annotation.adapters.XmlAdapter;
import javax.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.validation.Schema;
import javax.xml.transform.Source;
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLStreamReader;

import org.w3c.dom.Node;

import org.xml.sax.InputSource;

public interface Unmarshaller {

    abstract class Listener {
        public void beforeUnmarshal(Object target, Object parent) {
        }
        public void afterUnmarshal(Object target, Object parent) {
        }
    }

     A getAdapter(Class type);

    AttachmentUnmarshaller getAttachmentUnmarshaller();

    ValidationEventHandler getEventHandler() throws JAXBException;

    Listener getListener();

    Object getProperty(String name) throws PropertyException;

    Schema getSchema();

    UnmarshallerHandler getUnmarshallerHandler();

    boolean isValidating() throws JAXBException;

     void setAdapter(Class type, A adapter);

    void setAdapter(XmlAdapter adapter);

    void setAttachmentUnmarshaller(AttachmentUnmarshaller au);

    void setEventHandler(ValidationEventHandler handler) throws JAXBException;

    void setListener(Listener listener);

    void setProperty(String name, Object value) throws PropertyException;

    void setSchema(Schema schema);

    void setValidating(boolean validating) throws JAXBException;

    Object unmarshal(File f) throws JAXBException;

    Object unmarshal(InputSource source) throws JAXBException;

    Object unmarshal(InputStream is) throws JAXBException;

    Object unmarshal(Node node) throws JAXBException;

     JAXBElement unmarshal(Node node, Class declaredType) throws JAXBException;

    Object unmarshal(Reader reader) throws JAXBException;

    Object unmarshal(Source source) throws JAXBException;

     JAXBElement unmarshal(Source source, Class declaredType) throws JAXBException;

    Object unmarshal(URL url) throws JAXBException;

    Object unmarshal(XMLEventReader reader) throws JAXBException;

     JAXBElement unmarshal(XMLEventReader reader, Class declaredType) throws JAXBException;

    Object unmarshal(XMLStreamReader reader) throws JAXBException;

     JAXBElement unmarshal(XMLStreamReader reader, Class declaredType) throws JAXBException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy