|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XMLStreamWriter | |
---|---|
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. |
Uses of XMLStreamWriter in javolution.xml |
---|
Methods in javolution.xml that return XMLStreamWriter | |
---|---|
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). |
Methods in javolution.xml with parameters of type XMLStreamWriter | |
---|---|
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. |
Uses of XMLStreamWriter in javolution.xml.stream |
---|
Classes in javolution.xml.stream that implement XMLStreamWriter | |
---|---|
class |
XMLStreamWriterImpl
This class represents a reusable
implementation of XMLStreamWriter . |
Methods in javolution.xml.stream that return XMLStreamWriter | |
---|---|
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |