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

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

Introduction

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

The text is from its open source code.

Implementation

org.w3c.dom.NamedNodeMap has the following implementations.
Click this link to see all its implementation.

Method

intgetLength()
The number of nodes in this map.
NodegetNamedItem(String name)
Retrieves a node specified by name.
NodegetNamedItemNS(String namespaceURI, String localName)
Retrieves a node specified by local name and namespace URI.
Nodeitem(int index)
Returns the indexth item in the map.
NoderemoveNamedItem(String name)
Removes a node specified by name.
NoderemoveNamedItemNS(String namespaceURI, String localName)
Removes a node specified by local name and namespace URI.
NodesetNamedItem(Node arg)
Adds a node using its nodeName attribute.
NodesetNamedItemNS(Node arg)
Adds a node using its namespaceURI and localName.
StringtoString()
Returns a string representation of the object.