Java XML Attribute Exist hasAttribute(Node node, String attributeName)

Here you can find the source of hasAttribute(Node node, String attributeName)

Description

has Attribute

License

Open Source License

Declaration

private static final boolean hasAttribute(Node node, String attributeName) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2008, 2009 Spring IDE Developers
 * 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://from   www  .  ja  va 2  s  . c  om
 *     Spring IDE Developers - initial API and implementation
 *******************************************************************************/

import org.w3c.dom.Node;

public class Main {
    private static final boolean hasAttribute(Node node, String attributeName) {
        return (node != null && node.hasAttributes() && node.getAttributes().getNamedItem(attributeName) != null);
    }
}

Related

  1. hasAttribute(Element element, String value)
  2. hasAttribute(final Node node, final String name)
  3. hasAttribute(final Node node, final String name)
  4. hasAttribute(Node n, String attr)
  5. hasAttribute(Node node, String attributeName)
  6. hasAttribute(Node node, String attributeName, String className)
  7. hasAttributeValue(final Element element, final String attributeName)
  8. hasAttributeValue(Node node, String attributeName, String attributeValue)
  9. hasAttributeValue(String expected, String attribute, Element element)