Java org.w3c.dom.ls LSSerializer fields, constructors, methods, implement or subclass

Example usage for Java org.w3c.dom.ls LSSerializer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.w3c.dom.ls LSSerializer.

The text is from its open source code.

Method

DOMConfigurationgetDomConfig()
The DOMConfiguration object used by the LSSerializer when serializing a DOM node.
voidsetFilter(LSSerializerFilter filter)
When the application provides a filter, the serializer will call out to the filter before serializing each Node.
voidsetNewLine(String newLine)
The end-of-line sequence of characters to be used in the XML being written out.
booleanwrite(Node nodeArg, LSOutput destination)
Serialize the specified node as described above in the general description of the LSSerializer interface.
StringwriteToString(Node nodeArg)
Serialize the specified node as described above in the general description of the LSSerializer interface.
booleanwriteToURI(Node nodeArg, String uri)
A convenience method that acts as if LSSerializer.write was called with a LSOutput with no encoding specified and LSOutput.systemId set to the uri argument.