Java XML Node to Element isElementNode(Node n)

Here you can find the source of isElementNode(Node n)

Description

is Element Node

License

Open Source License

Declaration

public static boolean isElementNode(Node n) 

Method Source Code


//package com.java2s;
/* ***** BEGIN LICENSE BLOCK *****
 * Copyright (C) 2010-2011, The VNREAL Project Team.
 * /*from  ww w . jav  a 2 s .  c o m*/
 * This work has been funded by the European FP7
 * Network of Excellence "Euro-NF" (grant agreement no. 216366)
 * through the Specific Joint Developments and Experiments Project
 * "Virtual Network Resource Embedding Algorithms" (VNREAL). 
 *
 * The VNREAL Project Team consists of members from:
 * - University of Wuerzburg, Germany
 * - Universitat Politecnica de Catalunya, Spain
 * - University of Passau, Germany
 * See the file AUTHORS for details and contact information.
 * 
 * This file is part of ALEVIN (ALgorithms for Embedding VIrtual Networks).
 *
 * ALEVIN is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License Version 3 or later
 * (the "GPL"), or the GNU Lesser General Public License Version 3 or later
 * (the "LGPL") as published by the Free Software Foundation.
 *
 * ALEVIN is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * or the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License and
 * GNU Lesser General Public License along with ALEVIN; see the file
 * COPYING. If not, see <http://www.gnu.org/licenses/>.
 *
 * ***** END LICENSE BLOCK ***** */

import org.w3c.dom.Node;

public class Main {
    public static boolean isElementNode(Node n) {
        return (n.getNodeType() == Node.ELEMENT_NODE);
    }
}

Related

  1. isElement(Node node, String name)
  2. isElementByTag(Node node, String tagName)
  3. isElementContent(Node node)
  4. isElementNamed(Node node, String name)
  5. isElementNode(final Node target)
  6. isElementNode(Node n)
  7. isElementNode(Node target)
  8. isElementNode(Node target)