Objects implementing the DOMNamedNodeMap interface are used to represent collections of nodes that can be accessed by name. Note that NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not maintained in any particular order. Objects contained in an object implementing NamedNodeMap may also be accessed by an ordinal index, but this is simply to allow convenient enumeration of the contents of a NamedNodeMap, and does not imply that the DOM specifies an order to these Nodes.
DOMNode GetNamedItem( String name )
Retrieves a node specified by name.
name | - | The name of the node. |
DOMNode SetNamedItem( DOMNode node )
Adds a node using its nodeName attribute. As the nodeName attribute is used to derive the name which the node must be stored under, multiple nodes of certain types (those that have a "special" string value) cannot be stored as the names would clash. This is seen as preferable to allowing nodes to be aliased.
node | - | A node to store in a named node map. The node will later be accessible using the value of the nodeName attribute of the node. If a node with that name is already present in the map, it is replaced by the new one. |
DOMNode RemoveNamedItem( String name )
Removes a node specified by name.
name | - | The nodeName of the node to remove. When this NamedNodeMap contains the attributes attached to an element, as returned by the attributes attribute of the Node interface, if the removed attribute is known to have a default value, an attribute immediately appears containing the default value as well as the corresponding namespace URI, local name, and prefix when applicable. |
DOMNode Item( Integer index )
Returns the indexth item in the map. If index is greater than or equal to the number of nodes in the map, this returns null.
index | - | Index into the map. |
Integer GetLength()
The number of nodes in the map. The range of valid child node indices is 0 to length-1 inclusive.