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

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

Introduction

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

The text is from its open source code.

Method

voidappendData(String arg)
Append the string to the end of the character data of the node.
voiddeleteData(int offset, int count)
Remove a range of 16-bit units from the node.
StringgetData()
The character data of the node that implements this interface.
intgetLength()
The number of 16-bit units that are available through data and the substringData method below.
StringgetLocalName()
Returns the local part of the qualified name of this node.
StringgetNamespaceURI()
The namespace URI of this node, or null if it is unspecified (see ).
StringgetNodeValue()
The value of this node, depending on its type; see the table above.
voidinsertData(int offset, String arg)
Insert a string at the specified 16-bit unit offset.
voidreplaceData(int offset, int count, String arg)
Replace the characters starting at the specified 16-bit unit offset with the specified string.
voidsetData(String data)
The character data of the node that implements this interface.
voidsetNodeValue(String nodeValue)
The value of this node, depending on its type; see the table above.
StringsubstringData(int offset, int count)
Extracts a range of data from the node.