当前位置: 首页>>代码示例>>Java>>正文


Java Element.getChildText方法代码示例

本文整理汇总了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")
  );
}
 
开发者ID:bsideup,项目名称:gradle-maven-sync-plugin,代码行数:20,代码来源:MavenCoordinates.java

示例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;
}
 
开发者ID:ETspielberg,项目名称:bibliometrics,代码行数:11,代码来源:AuthorBuilder.java

示例3: getQuestion

import org.jdom2.Element; //导入方法依赖的package包/类
public static String getQuestion(Element item){
	return item.getChildText("p");
}
 
开发者ID:cs-zyluo,项目名称:CausalNet,代码行数:4,代码来源:Datum.java

示例4: getAnswerOne

import org.jdom2.Element; //导入方法依赖的package包/类
public static String getAnswerOne(Element item){
	return item.getChildText("a1");
}
 
开发者ID:cs-zyluo,项目名称:CausalNet,代码行数:4,代码来源:Datum.java

示例5: getAnswerTwo

import org.jdom2.Element; //导入方法依赖的package包/类
public static String getAnswerTwo(Element item){
	return item.getChildText("a2");
}
 
开发者ID:cs-zyluo,项目名称:CausalNet,代码行数:4,代码来源:Datum.java


注:本文中的org.jdom2.Element.getChildText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。