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 |
---|---|
XMLStreamWriter |
XMLFormat.OutputElement.getStreamWriter()
Returns the StAX-like stream writer (provides complete control over
the marshalling process).
|
XMLStreamWriter |
XMLObjectWriter.getStreamWriter()
Returns the stream writer used by this object writer (it can be used
to write prolog, write namespaces, etc).
|
Modifier and Type | Method and Description |
---|---|
protected void |
XMLBinding.writeClass(Class cls,
XMLStreamWriter writer,
boolean useAttributes)
Writes the specified class to the current XML element attributes or to
a new element if the element attributes cannot be used.
|
Modifier and Type | Class and Description |
---|---|
class |
XMLStreamWriterImpl
This class represents a
reusable
implementation of XMLStreamWriter . |
Modifier and Type | Method and Description |
---|---|
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream)
Returns a XML stream writer to the specified output stream (UTF-8
encoding).
|
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream,
String encoding)
Returns a XML stream writer to the specified output stream using the
specified encoding.
|
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(Writer writer)
Returns a XML stream writer to the specified i/o writer.
|
Copyright © 2005–2017 Javolution. All rights reserved.