StAXSource (Java Platform SE 6)
javax.xml.transform.stax
Class StAXSource
java.lang.Object javax.xml.transform.stax.StAXSource
- All Implemented Interfaces:
- 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:
-
JSR 173: Streaming API for XML,
XMLStreamReader,XMLEventReader
| Field Summary | |
|---|---|
static 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 | |
|---|---|
StAXSource(XMLEventReader xmlEventReader)
Creates a new instance of a StAXSource
by supplying an XMLEventReader. |
|
StAXSource(XMLStreamReader xmlStreamReader)
Creates a new instance of a StAXSource
by supplying an XMLStreamReader. |
|
| Method Summary | |
|---|---|
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. |
void |
setSystemId(String systemId)
In the context of a StAXSource, it is not appropriate
to explicitly set the system identifier. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
FEATURE
public 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.- See Also:
- Constant Field Values
| Constructor Detail |
|---|
StAXSource
public StAXSource(XMLEventReader xmlEventReader) throws XMLStreamException
Creates a new instance of a
StAXSourceby supplying anXMLEventReader.XMLEventReadermust be a non-nullreference.XMLEventReadermust be inXMLStreamConstants.START_DOCUMENTorXMLStreamConstants.START_ELEMENTstate.- 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
StAXSourceby supplying anXMLStreamReader.XMLStreamReadermust be a non-nullreference.XMLStreamReadermust be inXMLStreamConstants.START_DOCUMENTorXMLStreamConstants.START_ELEMENTstate.- Parameters:
xmlStreamReader-XMLStreamReaderused to create thisStAXSource.- Throws:
IllegalArgumentException- IfxmlStreamReader==null.IllegalStateException- IfxmlStreamReaderis not inXMLStreamConstants.START_DOCUMENTorXMLStreamConstants.START_ELEMENTstate.
| Method Detail |
|---|
getXMLEventReader
public XMLEventReader getXMLEventReader()
Get the
XMLEventReaderused by thisStAXSource.XMLEventReaderwill benull. if thisStAXSourcewas created with aXMLStreamReader.- Returns:
XMLEventReaderused by thisStAXSource.
getXMLStreamReader
public XMLStreamReader getXMLStreamReader()
Get the
XMLStreamReaderused by thisStAXSource.XMLStreamReaderwill benullif thisStAXSourcewas created with aXMLEventReader.- 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. TheXMLStreamReaderorXMLEventReaderused to construct thisStAXSourcedetermines the system identifier of the XML source.An
UnsupportedOperationExceptionis 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
XMLStreamReaderorXMLEventReaderused to construct thisStAXSourceis queried to determine the system identifier of the XML source.The system identifier may be
nullor an empty""String.- Specified by:
getSystemIdin interfaceSource
- Returns:
- System identifier used by this
StAXSource.
Submit a bug or feature
For further API reference and developer documentation, see Java SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2015, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.