Package | Description |
---|---|
javolution.xml |
Provides support for the encoding of objects, and the objects reachable from them,
into
XML ; and the complementary reconstruction of the
object graph from XML . |
javolution.xml.stream |
Provides StAX-like XML readers/writers which do not require object
creation (such as String) and are consequently faster and more time predictable
than standard StAX classes.
|
Modifier and Type | Method and Description |
---|---|
XMLStreamReader |
XMLFormat.InputElement.getStreamReader()
Returns the StAX-like stream reader (provides complete control
over the unmarshalling process).
|
XMLStreamReader |
XMLObjectReader.getStreamReader()
Returns the stream reader being used by this reader (it can be
used to set prefix, read prologs, etc).
|
Modifier and Type | Method and Description |
---|---|
protected Class |
XMLBinding.readClass(XMLStreamReader reader,
boolean useAttributes)
Reads the class corresponding to the current XML element.
|
Modifier and Type | Class and Description |
---|---|
class |
XMLStreamReaderImpl
This class represents a
reusable
implementation of XMLStreamWriter . |
Modifier and Type | Method and Description |
---|---|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream stream)
Returns a XML stream reader for the specified input stream
(encoding autodetected).
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(InputStream stream,
String encoding)
Returns a XML stream reader for the specified input stream using the
specified encoding.
|
abstract XMLStreamReader |
XMLInputFactory.createXMLStreamReader(Reader reader)
Returns a XML stream reader for the specified I/O reader.
|
Copyright © 2005–2018 Javolution. All rights reserved.