Class 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.
StAXSource
s are consumed during processing
and are not reusable.
- Since:
- 1.6
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
IfTransformerFactory.getFeature(String name)
returns true when passed this value as an argument, the Transformer supports Source input of this type. -
Constructor Summary
ConstructorsConstructorDescriptionStAXSource
(XMLEventReader xmlEventReader) Creates a new instance of aStAXSource
by supplying anXMLEventReader
.StAXSource
(XMLStreamReader xmlStreamReader) Creates a new instance of aStAXSource
by supplying anXMLStreamReader
. -
Method Summary
Modifier and TypeMethodDescriptionGet the system identifier used by thisStAXSource
.Get theXMLEventReader
used by thisStAXSource
.Get theXMLStreamReader
used by thisStAXSource
.boolean
isEmpty()
Indicates whether theStAXSource
object is empty.void
setSystemId
(String systemId) In the context of aStAXSource
, it is not appropriate to explicitly set the system identifier.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
FEATURE
IfTransformerFactory.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
Creates a new instance of a
StAXSource
by supplying anXMLEventReader
.XMLEventReader
must be a non-null
reference.XMLEventReader
must be inXMLStreamConstants.START_DOCUMENT
orXMLStreamConstants.START_ELEMENT
state.- Parameters:
xmlEventReader
-XMLEventReader
used to create thisStAXSource
.- Throws:
XMLStreamException
- IfxmlEventReader
access throws anException
.IllegalArgumentException
- IfxmlEventReader
==null
.IllegalStateException
- IfxmlEventReader
is not inXMLStreamConstants.START_DOCUMENT
orXMLStreamConstants.START_ELEMENT
state.
-
StAXSource
Creates a new instance of a
StAXSource
by supplying anXMLStreamReader
.XMLStreamReader
must be a non-null
reference.XMLStreamReader
must be inXMLStreamConstants.START_DOCUMENT
orXMLStreamConstants.START_ELEMENT
state.- Parameters:
xmlStreamReader
-XMLStreamReader
used to create thisStAXSource
.- Throws:
IllegalArgumentException
- IfxmlStreamReader
==null
.IllegalStateException
- IfxmlStreamReader
is not inXMLStreamConstants.START_DOCUMENT
orXMLStreamConstants.START_ELEMENT
state.
-
-
Method Details
-
getXMLEventReader
Get the
XMLEventReader
used by thisStAXSource
.XMLEventReader
will benull
. if thisStAXSource
was created with aXMLStreamReader
.- Returns:
XMLEventReader
used by thisStAXSource
.
-
getXMLStreamReader
Get the
XMLStreamReader
used by thisStAXSource
.XMLStreamReader
will benull
if thisStAXSource
was created with aXMLEventReader
.- Returns:
XMLStreamReader
used by thisStAXSource
.
-
setSystemId
In the context of a
StAXSource
, it is not appropriate to explicitly set the system identifier. TheXMLStreamReader
orXMLEventReader
used to construct thisStAXSource
determines the system identifier of the XML source.An
UnsupportedOperationException
is always thrown by this method.- Specified by:
setSystemId
in interfaceSource
- Parameters:
systemId
- Ignored.- Throws:
UnsupportedOperationException
- Is always thrown by this method.
-
getSystemId
Get the system identifier used by this
StAXSource
.The
XMLStreamReader
orXMLEventReader
used to construct thisStAXSource
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 interfaceSource
- Returns:
- System identifier used by this
StAXSource
.
-
isEmpty
-