Package | Description |
---|---|
javolution.xml |
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 |
StAX-like XML readers/writers which do not require object
creation (such as String) and are consequently faster than standard StAX.
|
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 | Method and Description |
---|---|
XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream)
Returns a XML stream writer to the specified output stream (UTF-8
encoding).
|
XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(OutputStream stream,
String encoding)
Returns a XML stream writer to the specified output stream using the
specified encoding.
|
XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(Writer writer)
Returns a XML stream writer to the specified i/o writer.
|
Copyright © 2005-2013 Javolution. All Rights Reserved.