Java XML Last Child Element getLastChildElement(Element elem)

Here you can find the source of getLastChildElement(Element elem)

Description

get Last Child Element

License

Open Source License

Declaration

public static Element getLastChildElement(Element elem) 

Method Source Code

//package com.java2s;
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.//from  www . j a v  a2  s . c  o  m
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is 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:
* Red Hat, Inc. - initial API and implementation
* William Collins punkhornsw@gmail.com
******************************************************************************/

import org.w3c.dom.Element;

import org.w3c.dom.Node;

public class Main {
    public static Element getLastChildElement(Element elem) {
        if (elem == null) {
            return null;
        }

        for (Node n = elem.getLastChild(); n != null; n = n.getPreviousSibling()) {
            if (n.getNodeType() == Node.ELEMENT_NODE) {
                return (Element) n;
            }
        }

        return null;
    }
}

Related

  1. getLastChild(Element element)
  2. getLastChild(Element parent, String name)
  3. getLastChild(Node node, String name)
  4. getLastChildElement(Element e)
  5. getLastChildElement(Element e)
  6. getLastChildElement(Node n)
  7. getLastChildElement(Node node)
  8. getLastChildElement(Node node)
  9. getLastChildElement(Node node)