Package Summary  Overview Summary

class:StAXSource [NONE]

field:FEATURE [NONE]

constructor:<init>(javax.xml.stream.XMLEventReader) [NONE]

constructor:<init>(javax.xml.stream.XMLStreamReader) [NONE]

method:getXMLEventReader() [NONE]

  • getXMLEventReader

    public XMLEventReader getXMLEventReader()

    Get the XMLEventReader used by this StAXSource.

    XMLEventReader will be null. if this StAXSource was created with a XMLStreamReader.

    Returns:
    XMLEventReader used by this StAXSource.

method:getXMLStreamReader() [NONE]

  • getXMLStreamReader

    public XMLStreamReader getXMLStreamReader()

    Get the XMLStreamReader used by this StAXSource.

    XMLStreamReader will be null if this StAXSource was created with a XMLEventReader.

    Returns:
    XMLStreamReader used by this StAXSource.

method:setSystemId(java.lang.String) [NONE]

  • setSystemId

    public void setSystemId​(String systemId)

    In the context of a StAXSource, it is not appropriate to explicitly set the system identifier. The XMLStreamReader or XMLEventReader used to construct this StAXSource determines the system identifier of the XML source.

    An UnsupportedOperationException is always thrown by this method.

    Specified by:
    setSystemId in interface Source
    Parameters:
    systemId - Ignored.
    Throws:
    UnsupportedOperationException - Is always thrown by this method.

method:getSystemId() [NONE]

  • getSystemId

    public String getSystemId()

    Get the system identifier used by this StAXSource.

    The XMLStreamReader or XMLEventReader used to construct this StAXSource is queried to determine the system identifier of the XML source.

    The system identifier may be null or an empty ""String.

    Specified by:
    getSystemId in interface Source
    Returns:
    System identifier used by this StAXSource.

method:isEmpty() [NONE]

  • isEmpty

    public boolean isEmpty()
    Indicates whether the StAXSource object is empty. Since a StAXSource object can never be empty, this method always returns false.
    Specified by:
    isEmpty in interface Source
    Returns:
    unconditionally false

© 2019 Oracle Corporation and/or its affiliates