Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2015 ETAS GmbH.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Dennis Eder (ETAS GmbH) - initial API and implementation and/or initial documentation
 *******************************************************************************/

import java.util.ArrayList;
import java.util.stream.Stream;

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

public class Main {
    public static Stream<Node> getChildren(Node node) {
        NodeList children = node.getChildNodes();
        ArrayList<Node> childNodeList = new ArrayList<>();
        for (int c = 0; c < children.getLength(); c++) {
            childNodeList.add(children.item(c));
        }
        Stream<Node> childrenStream = childNodeList.stream();
        return childrenStream;
    }
}