本文整理匯總了Java中org.jdom2.Attribute.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java Attribute.getName方法的具體用法?Java Attribute.getName怎麽用?Java Attribute.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.jdom2.Attribute
的用法示例。
在下文中一共展示了Attribute.getName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getRequiredAttribute
import org.jdom2.Attribute; //導入方法依賴的package包/類
public static Attribute getRequiredAttribute(Element el, String name, String...aliases) throws InvalidXMLException {
aliases = ArrayUtils.append(aliases, name);
Attribute attr = null;
for(String alias : aliases) {
Attribute a = el.getAttribute(alias);
if(a != null) {
if(attr == null) {
attr = a;
} else {
throw new InvalidXMLException("attributes '" + attr.getName() + "' and '" + alias + "' are aliases for the same thing, and cannot be combined", el);
}
}
}
if(attr == null) {
throw new InvalidXMLException("attribute '" + name + "' is required", el);
}
return attr;
}
示例2: parseString
import org.jdom2.Attribute; //導入方法依賴的package包/類
/**
* Parses a JDom2 Object into a string
* @param e
* Object (Element, Text, Document or Attribute)
* @return String
* @author sholzer (11.05.2015)
*/
public String parseString(Object e) {
XMLOutputter element2String = new XMLOutputter();
if (e instanceof Element) {
return element2String.outputString((Element) e);
}
if (e instanceof Text) {
return element2String.outputString((Text) e);
}
if (e instanceof Document) {
return element2String.outputString((Document) e);
}
if (e instanceof org.jdom2.Attribute) {
Attribute a = (org.jdom2.Attribute) e;
return a.getName() + "=\"" + a.getValue() + "\"";
}
return e.toString();
}
示例3: describe
import org.jdom2.Attribute; //導入方法依賴的package包/類
public String describe() {
if(node instanceof Element) {
return describe((Element) node);
} else {
Attribute attr = (Attribute) node;
return "'" + attr.getName() + "' attribute of " + describe(attr.getParent());
}
}