本文整理汇总了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());
}
}