Java XML Node Sibiling getPreviousSiblingElement(Node node)

Here you can find the source of getPreviousSiblingElement(Node node)

Description

get Previous Sibling Element

License

Apache License

Declaration

public static Node getPreviousSiblingElement(Node node) 

Method Source Code

//package com.java2s;
/*/*from   ww w.  java2s.  c  o m*/
 * 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;

public class Main {
    public static Node getPreviousSiblingElement(Node node) {
        if (node == null)
            return null;
        Node prevSibling = node.getPreviousSibling();
        while ((prevSibling != null) && (prevSibling.getNodeType() != Node.ELEMENT_NODE))
            prevSibling = prevSibling.getPreviousSibling();
        if ((prevSibling != null) && (prevSibling.getNodeType() == Node.ELEMENT_NODE))
            return prevSibling;
        return null;
    }
}

Related

  1. getNextVisibleSiblingElement(Node node)
  2. getPreHomoSibling(Node aNode)
  3. getPreviousSibling(Node node, short nodeType)
  4. getPreviousSiblingByName(Node currentNode, String tagName)
  5. getPreviousSiblingElement(Node node)
  6. getSibling(Node current)
  7. getSiblingValues(Node currentNode, Set siblingTags)