| 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(XMLStreamReader
Unmarshal XML data from the specified pull parser and return the resulting content tree.
|
<T> JAXBElement |
Unmarshaller.unmarshal(XMLStreamReader
Unmarshal root element to JAXB mapped
declaredType and return the resulting content tree.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
AbstractUnmarshallerImpl.unmarshal(XMLStreamReader
|
<T> JAXBElement |
AbstractUnmarshallerImpl.unmarshal(XMLStreamReader
|
| Modifier and Type | Method and Description |
|---|---|
abstract XMLStreamReader |
XMLInputFactory.createFilteredReader(XMLStreamReader
Create a filtered reader that wraps the filter around the reader
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream
Create a new XMLStreamReader from a java.io.InputStream
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream
Create a new XMLStreamReader from a java.io.InputStream
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(Reader
Create a new XMLStreamReader from a reader
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(Source
Create a new XMLStreamReader from a JAXP source.
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(String
Create a new XMLStreamReader from a java.io.InputStream
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(String
Create a new XMLStreamReader from a java.io.InputStream
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
StreamFilter.accept(XMLStreamReader
Tests whether the current state is part of this stream.
|
abstract XMLStreamReader |
XMLInputFactory.createFilteredReader(XMLStreamReader
Create a filtered reader that wraps the filter around the reader
|
abstract XMLEventReader |
XMLInputFactory.createXMLEventReader(XMLStreamReader
Create a new XMLEventReader from an XMLStreamReader.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StreamReaderDelegate
This is the base class for deriving an XMLStreamReader filter This class is designed to sit between an XMLStreamReader and an application's XMLStreamReader.
|
| Modifier and Type | Method and Description |
|---|---|
XMLStreamReader |
StreamReaderDelegate.getParent()
Get the parent of this instance.
|
| Modifier and Type | Method and Description |
|---|---|
XMLEvent |
XMLEventAllocator.allocate(XMLStreamReader
This method allocates an event given the current state of the XMLStreamReader.
|
void |
XMLEventAllocator.allocate(XMLStreamReader
This method allocates an event or set of events given the current state of the XMLStreamReader and adds the event or set of events to the consumer that was passed in.
|
void |
StreamReaderDelegate.setParent(XMLStreamReader
Set the parent of this instance.
|
| Constructor and Description | |
|---|---|
StreamReaderDelegate(XMLStreamReader
Construct an filter with the specified parent.
|
| Modifier and Type | Method and Description |
|---|---|
XMLStreamReader |
StAXSource.getXMLStreamReader()
Get the
XMLStreamReader used by this
StAXSource.
|
| Constructor and Description | |
|---|---|
StAXSource(XMLStreamReader
Creates a new instance of a
StAXSource by supplying an
XMLStreamReader.
|