org.joox.Match.first()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(180)

本文整理了Java中org.joox.Match.first()方法的一些代码示例,展示了Match.first()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Match.first()方法的具体详情如下:
包路径:org.joox.Match
类名称:Match
方法名:first

Match.first介绍

[英]Get the first in a set of matched elements.
[中]获取一组匹配元素中的第一个。

代码示例

代码示例来源:origin: org.jboss.windup.rules.apps/windup-rules-java-ee

private String extractChildTagAndTrim(Element element, String property)
  {
    String result = $(element).find(property).first().text();
    return StringUtils.trimToNull(result);
  }
}

代码示例来源:origin: windup/windup

private String extractChildTagAndTrim(Element element, String property)
  {
    String result = $(element).find(property).first().text();
    return StringUtils.trimToNull(result);
  }
}

代码示例来源:origin: org.jboss.windup.rules/rules-impl

protected String extractChildTagAndTrim(Element element, String property)
  {
    String result = $(element).find(property).first().text();
    return StringUtils.trimToNull(result);
  }
}

代码示例来源:origin: org.jboss.windup.rules/rules-impl

protected String extractChildTagAndTrim(Element element, String property)
  {
    String result = $(element).find(property).first().text();
    return StringUtils.trimToNull(result);
  }
}

代码示例来源:origin: org.jboss.windup.rules.apps/rules-java-ee

private String extractChildTagAndTrim(Element element, String property)
  {
    String result = $(element).find(property).first().text();
    return StringUtils.trimToNull(result);
  }
}

代码示例来源:origin: org.jboss.windup.rules/rules-impl

String version = $(doc).find("ejb-jar").first().attr("version");

代码示例来源:origin: org.jboss.windup.rules/rules-impl

version = $(doc).find("web-app").first().attr("version");

代码示例来源:origin: windup/windup

String expectedType = $(bean).children("property").filter(attr("name", "expectedType")).first().attr("value");
String jndiName = $(bean).children("property").filter(attr("name", "jndiName")).first().attr("value");

代码示例来源:origin: org.jboss.windup.rules.apps/windup-rules-java-ee

String expectedType = $(bean).children("property").filter(attr("name", "expectedType")).first().attr("value");
String jndiName = $(bean).children("property").filter(attr("name", "jndiName")).first().attr("value");

相关文章