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

src.java.org.codehaus.stax2.XMLEventReader2 Maven / Gradle / Ivy

There is a newer version: 4.0.6
Show newest version
package org.codehaus.stax2;

import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLStreamException;

/**
 * Extended interface that implements functionality that is missing
 * from {@link XMLEventReader}, based on findings on trying to
 * implement StAX API v1.0.
 */
public interface XMLEventReader2
    extends XMLEventReader
{
    /**
     * Method that is similar to {@link #hasNext}, except that it can
     * throw a {@link XMLStreamException}. This is important distinction,
     * since the underlying stream reader is allowed to throw such an
     * exception when its
     * hasNext() gets called.
     *
     */
    public boolean hasNextEvent() throws XMLStreamException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy