Java XML Attribute from Element getIntAttribute(NamedNodeMap namedNodeMap, String name)

Here you can find the source of getIntAttribute(NamedNodeMap namedNodeMap, String name)

Description

get Int Attribute

License

Apache License

Declaration

public static Integer getIntAttribute(NamedNodeMap namedNodeMap, String name) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;

public class Main {
    public static Integer getIntAttribute(NamedNodeMap namedNodeMap, String name) {
        String value = getAttribute(namedNodeMap, name);
        if (value == null) {
            return null;
        } else {//from   w  w w  .  j ava2  s. co  m
            return Integer.valueOf(value);
        }
    }

    public static String getAttribute(NamedNodeMap namedNodeMap, String name) {
        Node node = namedNodeMap.getNamedItem(name);
        if (node == null) {
            return null;
        }
        return node.getNodeValue();
    }
}

Related

  1. getIntAttribute(Element el, String name)
  2. getIntAttribute(Element elem, String attName, boolean mandatory, int defaultValue)
  3. getIntAttribute(Element elem, String attName, boolean mandatory, int defaultValue)
  4. getIntAttribute(Element element, String attribute)
  5. getIntAttribute(Element element, String name, int defaultValue)
  6. getIntAttributeIgnoreCase(Element ele, String attr, int defaultvalue)
  7. getIntAttributeValue(Element element, String attribute)
  8. getInteger(final org.w3c.dom.Element element, final String attr, int def)
  9. getIntegerAttribute(Element el, String attribute)