Java XML NodeList findNode(NodeList nodeList, String nodeName)

Here you can find the source of findNode(NodeList nodeList, String nodeName)

Description

Search for the first Node with the nodeName().equals(nodeName) in the nodeList

License

Open Source License

Parameter

Parameter Description
nodeList a parameter
nodeName a parameter

Return

Node or null if no Node has been found

Declaration

private static Node findNode(NodeList nodeList, String nodeName) 

Method Source Code

//package com.java2s;
/*/*from  w w w  .  j  a  v  a2s.  co m*/
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at license/ESCIDOC.LICENSE
* or http://www.escidoc.org/license.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at license/ESCIDOC.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    /**
     * Search for the first <code>Node</code> with the nodeName().equals(nodeName)
     * in the nodeList   
     * @param nodeList
     * @param nodeName
     * @return Node or null if no Node has been found 
     */
    private static Node findNode(NodeList nodeList, String nodeName) {
        Node curNode;
        for (int i = 0; i < nodeList.getLength(); i++) {
            curNode = nodeList.item(i);
            if (curNode.getNodeType() == Node.ELEMENT_NODE && nodeName.equals(curNode.getNodeName())) {
                return curNode;
            }
        }
        return null;
    }
}

Related

  1. extractNodeListFromElement(Element config, String tag, boolean required)
  2. fillHashtable(NodeList list, Hashtable fillIn)
  3. fillHashtable(NodeList list, Hashtable fillIn)
  4. findElement(NodeList elements, String elementName)
  5. findElementsIgnoreCase(String name, NodeList nodes)
  6. findNode(NodeList nodes, String nodeName)
  7. findNode(String id, NodeList orgs)
  8. findNodeByName(NodeList nodeList, String name)
  9. getAllNodes(NodeList nodeList, List nodes)