本文整理汇总了Java中org.jdom2.Element.getChildText方法的典型用法代码示例。如果您正苦于以下问题:Java Element.getChildText方法的具体用法?Java Element.getChildText怎么用?Java Element.getChildText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jdom2.Element
的用法示例。
在下文中一共展示了Element.getChildText方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: create
import org.jdom2.Element; //导入方法依赖的package包/类
public static MavenCoordinates create(Element rootElement) {
val namespace = rootElement.getNamespace();
Function<String, String> getValue = key ->
Optional
.ofNullable(rootElement.getChildText(key, namespace))
.filter(Objects::nonNull)
.filter(it -> it.trim().length() > 0)
.orElseGet(() -> {
Element parent = rootElement.getChild("parent", namespace);
return parent != null ? parent.getChildText(key, namespace) : null;
});
return new MavenCoordinates(
getValue.apply("groupId"),
rootElement.getChildText("artifactId", namespace),
getValue.apply("version")
);
}
示例2: buildFromAuthorInfo
import org.jdom2.Element; //导入方法依赖的package包/类
private PublicationAuthor buildFromAuthorInfo(Element authorInfo) {
author.setFirstname(authorInfo.getChildText("given-name"));
author.setSurname(authorInfo.getChildText("surname"));
if (authorInfo.getChildText("scopusAuthorID") != null) author.setScopusAuthorID(authorInfo.getChildText("scopusAuthorID"));
if (authorInfo.getChildText("affiliation") != null) author.setInstitution(authorInfo.getChildText("affiliation"));
if (authorInfo.getChildText("orcid") != null) author.setOrcid(authorInfo.getChildText("orcid"));
if (authorInfo.getChildText("researcherID") != null) author.setResearcherID(authorInfo.getChildText("researcherID"));
if (authorInfo.getChildText("gnd") != null) author.setGnd(authorInfo.getChildText("gnd"));
return author;
}
示例3: getQuestion
import org.jdom2.Element; //导入方法依赖的package包/类
public static String getQuestion(Element item){
return item.getChildText("p");
}
示例4: getAnswerOne
import org.jdom2.Element; //导入方法依赖的package包/类
public static String getAnswerOne(Element item){
return item.getChildText("a1");
}
示例5: getAnswerTwo
import org.jdom2.Element; //导入方法依赖的package包/类
public static String getAnswerTwo(Element item){
return item.getChildText("a2");
}