Java XML NodeList convertToArray(NodeList list)

Here you can find the source of convertToArray(NodeList list)

Description

convert To Array

License

Apache License

Parameter

Parameter Description
list The list of Nodes to copy into a Node array.

Return

An array holding a copy of the Nodes in the original NodeList.

Declaration

public static Node[] convertToArray(NodeList list) 

Method Source Code

//package com.java2s;
/* //w ww  .  j  ava  2  s  .  c om
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

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

public class Main {
    /**
     * 
     * @param list
     *        The list of Nodes to copy into a Node array.
     * 
     * @return An array holding a copy of the Nodes in the original NodeList.
     *
     */
    public static Node[] convertToArray(NodeList list) {
        int length = list.getLength();
        Node[] copy = new Node[length];

        for (int n = 0; n < length; ++n)
            copy[n] = list.item(n);

        return copy;
    }
}

Related

  1. combineNodeLists(NodeList successfulReportList, NodeList failedAssertList)
  2. containsElementByValue(NodeList elements, String value)
  3. containsNature(NodeList nodes, String nature)
  4. convertNodelistToSet(NodeList xpathNodeSet)
  5. convertToArray(NodeList e)
  6. convertToElementList(org.w3c.dom.NodeList _nodeList)
  7. copyNodeList(NodeList nodeList)
  8. createNodeCollection(final NodeList nodeList)
  9. createRealNodeList(NodeList nodeList)