Here you can find the source of isElement(Node node)
public static boolean isElement(Node node)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; public class Main { public static boolean isElement(Node node) { short nodeType = node.getNodeType(); if (Node.ELEMENT_NODE == nodeType || Node.DOCUMENT_NODE == nodeType) { return true; }//from w ww . j a v a2s. com return false; } }