List of utility methods to do XML Attribute Get
String | getAttribString(Element ele, String name) Parses the given attribute of this tag and returns it as a String. return ele.getAttribute(name);
|
URL | getAttribURL(Element ele, String name, URL docRoot) get Attrib URL String sval = ele.getAttribute(name); URL url; try { return new URL(docRoot, sval); } catch (Exception e) { return null; |
String | getAttribute(Element aElement, String aAttr, String aDefault) Retrieves the given attribute from the given Element. String str = getAttribute(aElement, aAttr); return str.equals("") ? aDefault : str; |
String | getAttribute(Element e, String attName) get Attribute if (e.getAttributeNode(attName) == null) return null; return e.getAttribute(attName); |
String | getAttribute(Element e, String attribute) get Attribute if (e.hasAttribute(attribute)) return e.getAttribute(attribute); return null; |
String | getAttribute(Element e, String attrName, String def) get Attribute String result = e.getAttribute(attrName); if (!hasValue(result)) result = def; return result; |
String | getAttribute(Element e, String name) Return the value of an attribute on an element. String value = e.getAttribute(name); if (value != null && value.length() == 0) { value = null; return value; |
String | getAttribute(Element e, String name) Helper to get an attribute if it exists or return null. if (e.hasAttribute(name)) return e.getAttribute(name); return null; |
String | getAttribute(Element e, String name) get Attribute return e.hasAttribute(name) ? e.getAttribute(name) : ""; |
String | getAttribute(Element e, String name) get Attribute if (e.getAttribute(name) == null) return ""; return e.getAttribute(name); |