本文整理了Java中org.jboss.windup.config.query.Query.from
方法的一些代码示例,展示了Query.from
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.from
方法的具体详情如下:
包路径:org.jboss.windup.config.query.Query
类名称:Query
方法名:from
[英]Begin this Query with results of a prior Query, read from the variable with the given name.
[中]从前面一个查询的结果开始这个查询,从给定名称的变量中读取。
代码示例来源:origin: org.jboss.windup.config/windup-config-xml
if (StringUtils.isNotBlank(from))
query = (Query) Query.from(from);
代码示例来源:origin: windup/windup
QueryBuilderFrom fromQuery = Query.from(getInputVariablesName());
QueryBuilderPiped piped = fromQuery.piped(new QueryGremlinCriterion()
JavaTypeReferenceModel.class));
query = Query.from(initialQueryID);
代码示例来源:origin: windup/windup
if (StringUtils.isNotBlank(from))
query = (Query) Query.from(from);
代码示例来源:origin: org.jboss.windup.rules.apps/windup-rules-java-api
QueryBuilderFrom fromQuery = Query.from(getInputVariablesName());
QueryBuilderPiped piped = fromQuery.piped(new QueryGremlinCriterion()
JavaTypeReferenceModel.class));
query = Query.from(initialQueryID);
代码示例来源:origin: org.jboss.windup.rules.apps/rules-java
if (!StringUtils.isBlank(getInputVariablesName()))
query = Query.from(getInputVariablesName());
内容来源于网络,如有侵权,请联系作者删除!