List of utility methods to do XML Attribute from Element
String | getStringAttributeValue(Element element, String attribute) get String Attribute Value Attr a = element.getAttributeNode(attribute);
return a != null ? a.getValue() : null;
|
String | getStringAttributeValue(final Element element, final String attributeName) get String Attribute Value if (null == element) { return null; final String str = element.getAttribute(attributeName); return str; |
String | getStringAttributeValue(final Element element, final String attributeName) get String Attribute Value if (null == element) { return null; final String str = element.getAttribute(attributeName); return str; |
String | getTagAttribute(String sTag, String sAtt, Element eElement) get Tag Attribute Node node; String name; NodeList nList = eElement.getChildNodes(); for (int i = 0; i < nList.getLength(); i++) { node = nList.item(i); name = node.getNodeName(); if (name.equals(sTag)) { node = node.getAttributes().getNamedItem(sAtt); ... |
String | getTagAttribute(XMLStreamReader xmler, String attribute, String defaultValue) get Tag Attribute if (attribute != null) { String val = xmler.getAttributeValue(null, attribute); if (val != null) { return val; return defaultValue; |
String | getTagAttributeRecursive(String sTag, String sAtt, Element eElement) XML helper to retrieve an attribute of a node NodeList nList = eElement.getElementsByTagName(sTag); if (nList == null) return null; Node node = nList.item(0); if (node == null) return null; Node attNode = node.getAttributes().getNamedItem(sAtt); if (attNode == null) ... |
Map | getTagAttributes(Element element) get Tag Attributes Map<String, String> attributes = new LinkedHashMap<String, String>(); NamedNodeMap sourceAttributes = element.getAttributes(); for (int i = 0; i < sourceAttributes.getLength(); ++i) { Attr attribute = (Attr) sourceAttributes.item(i); attributes.put(attribute.getName(), attribute.getValue()); return attributes; |
Attr | getThisClassTypeAttr(Element methodNode) get This Class Type Attr return methodNode.getAttributeNode("thisClass"); |
String | getTrimedAttribute(Element elem, String attr_name) get Trimed Attribute return trimOuterWhitespace(elem.getAttribute(attr_name));
|
String | getValue(final Element elem, final String attrName) Get attribute value. final Attr attr = elem.getAttributeNode(attrName); if (attr != null && !attr.getValue().isEmpty()) { return attr.getValue(); return null; |