| Package | Description |
|---|---|
| javax.xml.bind |
Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.
|
| javax.xml.bind.helpers |
JAXB Provider Use Only: Provides partial default implementations for some of the
javax.xml.bind interfaces.
|
| javax.xml.stream | |
| javax.xml.stream.util | |
| javax.xml.transform.stax |
Provides for StAX-specific transformation APIs.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
Unmarshaller.unmarshal(XMLEventReader
Unmarshal XML data from the specified pull parser and return the resulting content tree.
|
<T> JAXBElement |
Unmarshaller.unmarshal(XMLEventReader
Unmarshal root element to JAXB mapped
declaredType and return the resulting content tree.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
AbstractUnmarshallerImpl.unmarshal(XMLEventReader
|
<T> JAXBElement |
AbstractUnmarshallerImpl.unmarshal(XMLEventReader
|
| Modifier and Type | Method and Description |
|---|---|
abstract XMLEventReader |
XMLInputFactory.createFilteredReader(XMLEventReader
Create a filtered event reader that wraps the filter around the event reader
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(InputStream
Create a new XMLEventReader from a java.io.InputStream
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(InputStream
Create a new XMLEventReader from a java.io.InputStream
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(Reader
Create a new XMLEventReader from a reader
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(Source
Create a new XMLEventReader from a JAXP source.
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(String
Create a new XMLEventReader from a java.io.InputStream
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(String
Create a new XMLEventReader from a reader
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(XMLStreamReader
Create a new XMLEventReader from an XMLStreamReader.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLEventWriter.add(XMLEventReader
Adds an entire stream to an output stream, calls next() on the inputStream argument until hasNext() returns false This should be treated as a convenience method that will perform the following loop over all the events in an event reader and call add on each event.
|
abstract XMLEventReader |
XMLInputFactory.createFilteredReader(XMLEventReader
Create a filtered event reader that wraps the filter around the event reader
|
| Modifier and Type | Class and Description |
|---|---|
class |
EventReaderDelegate
This is the base class for deriving an XMLEventReader filter.
|
| Modifier and Type | Method and Description |
|---|---|
XMLEventReader |
EventReaderDelegate.getParent()
Get the parent of this instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EventReaderDelegate.setParent(XMLEventReader
Set the parent of this instance.
|
| Constructor and Description | |
|---|---|
EventReaderDelegate(XMLEventReader
Construct an filter with the specified parent.
|
| Modifier and Type | Method and Description |
|---|---|
XMLEventReader |
StAXSource.getXMLEventReader()
Get the
XMLEventReader used by this
StAXSource.
|
| Constructor and Description | |
|---|---|
StAXSource(XMLEventReader
Creates a new instance of a
StAXSource by supplying an
XMLEventReader.
|