Class StAXSource
- All Implemented Interfaces:
Source
public class StAXSource extends Object implements Source
Acts as a holder for an XML Source in the form of a StAX reader,i.e. XMLStreamReader or XMLEventReader. StAXSource can be used in all cases that accept a Source, e.g. Transformer, Validator which accept Source as input.
StAXSources are consumed during processing and are not reusable.
- Since:
- 1.6
- See Also:
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
static final String |
FEATURE |
If TransformerFactory.getFeature(String name) returns true when passed this value as an argument, the Transformer supports Source input of this type. |
Constructor Summary
| Constructor | Description |
|---|---|
StAXSource |
Creates a new instance of a StAXSource by supplying an XMLEventReader. |
StAXSource |
Creates a new instance of a StAXSource by supplying an XMLStreamReader. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
String |
getSystemId() |
Get the system identifier used by this StAXSource. |
XMLEventReader |
getXMLEventReader() |
Get the XMLEventReader used by this StAXSource. |
XMLStreamReader |
getXMLStreamReader() |
Get the XMLStreamReader used by this StAXSource. |
boolean |
isEmpty() |
Indicates whether the StAXSource object is empty. |
void |
setSystemId |
In the context of a StAXSource, it is not appropriate to explicitly set the system identifier. |
Field Details
FEATURE
public static final String FEATURE
TransformerFactory.getFeature(String name) returns true when passed this value as an argument, the Transformer supports Source input of this type.- See Also:
Constructor Details
StAXSource
public StAXSource(XMLEventReader xmlEventReader) throws XMLStreamException
Creates a new instance of a StAXSource by supplying an XMLEventReader.
XMLEventReader must be a non-null reference.
XMLEventReader must be in XMLStreamConstants.START_DOCUMENT or XMLStreamConstants.START_ELEMENT state.
- Parameters:
-
xmlEventReader-XMLEventReaderused to create thisStAXSource. - Throws:
-
XMLStreamException- IfxmlEventReaderaccess throws anException. -
IllegalArgumentException- IfxmlEventReader==null. -
IllegalStateException- IfxmlEventReaderis not inXMLStreamConstants.START_DOCUMENTorXMLStreamConstants.START_ELEMENTstate.
StAXSource
public StAXSource(XMLStreamReader xmlStreamReader)
Creates a new instance of a StAXSource by supplying an XMLStreamReader.
XMLStreamReader must be a non-null reference.
XMLStreamReader must be in XMLStreamConstants.START_DOCUMENT or XMLStreamConstants.START_ELEMENT state.
- Parameters:
-
xmlStreamReader-XMLStreamReaderused to create thisStAXSource. - Throws:
-
IllegalArgumentException- IfxmlStreamReader==null. -
IllegalStateException- IfxmlStreamReaderis not inXMLStreamConstants.START_DOCUMENTorXMLStreamConstants.START_ELEMENTstate.
Method Details
getXMLEventReader
public XMLEventReader getXMLEventReader()
Get the XMLEventReader used by this StAXSource.
XMLEventReader will be null. if this StAXSource was created with a XMLStreamReader.
- Returns:
-
XMLEventReaderused by thisStAXSource.
getXMLStreamReader
public XMLStreamReader getXMLStreamReader()
Get the XMLStreamReader used by this StAXSource.
XMLStreamReader will be null if this StAXSource was created with a XMLEventReader.
- Returns:
-
XMLStreamReaderused by thisStAXSource.
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:
-
setSystemIdin interfaceSource - Parameters:
-
systemId- Ignored. - Throws:
-
UnsupportedOperationException- Is always thrown by this method.
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:
-
getSystemIdin interfaceSource - Returns:
- System identifier used by this
StAXSource.
isEmpty
public boolean isEmpty()
StAXSource object is empty. Since a StAXSource object can never be empty, this method always returns false.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.xml/javax/xml/transform/stax/StAXSource.html