List of utility methods to do XML Attribute Get
String | getAttributeValue(Element el, String attributeName) Gets the attribute value. return (null == el ? null : el.getAttribute(attributeName));
|
String | getAttributeValue(Element el, String attributeName) get Attribute Value return (null == el ? null : el.getAttribute(attributeName));
|
String | getAttributeValue(Element el, String attrName) Get the value from the given attribute return getAttributeValue(el, new QName(attrName)); |
String | getAttributeValue(Element ele, String attrName) Helper function for quickly retrieving an attribute from a given element. return decode(ele.getAttribute(attrName));
|
String | getAttributeValue(Element elem, String name) Returns the attribute value for the attribute with the specified name. Attr attr = elem.getAttributeNodeNS(null, name);
return (attr == null) ? null : attr.getValue();
|
String | getAttributeValue(Element element, String attr) Return the attribute value. return element.getAttributeNode(attr).getValue();
|
String | getAttributeValue(Element element, String attributeName) Returns the value of an attribute of a given XML element return (null == element ? null : element.getAttribute(attributeName));
|
String | getAttributeValue(Element element, String attributeName, String namespaceURI) Get attribute value, returning null if unset.
String attributeValue; if (namespaceURI == null) { attributeValue = element.getAttribute(attributeName); } else { attributeValue = element.getAttributeNS(namespaceURI, attributeName); if (attributeValue.length() == 0 && !element.hasAttribute(attributeName)) { return null; ... |
String | getAttributeValue(Element element, String attrName) Get attribute value with the given name defined for the specified element. String attrValue = null; Attr attr = null; if ((attr = element.getAttributeNode(attrName)) != null) { attrValue = attr.getValue().trim(); return attrValue; |
String | getAttributeValue(Element element, String attrName) TODO: Case sensitive? NamedNodeMap attributes = element.getAttributes(); Node attribute = attributes.getNamedItem(attrName); if (attribute == null) { return null; } else { return attribute.getNodeValue(); |