本文整理了Java中org.jboss.windup.config.query.Query.withProperty
方法的一些代码示例,展示了Query.withProperty
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.withProperty
方法的具体详情如下:
包路径:org.jboss.windup.config.query.Query
类名称:Query
方法名:withProperty
暂无
代码示例来源:origin: org.jboss.windup.config/windup-config-api
@Override
public QueryBuilderWith withProperty(String property, Object searchValue)
{
return withProperty(property, QueryPropertyComparisonType.EQUALS, searchValue);
}
代码示例来源:origin: windup/windup
@Override
public QueryBuilderWith withProperty(String property, Object searchValue)
{
return withProperty(property, QueryPropertyComparisonType.EQUALS, searchValue);
}
代码示例来源:origin: org.jboss.windup.config/windup-config-api
@Override
public QueryBuilderWith withProperty(String property, Object searchValue, Object... searchValues)
{
List<Object> values = new LinkedList<>();
values.add(searchValue);
values.addAll(Arrays.asList(searchValues));
return withProperty(property, values);
}
代码示例来源:origin: windup/windup
@Override
public QueryBuilderWith withProperty(String property, Object searchValue, Object... searchValues)
{
List<Object> values = new LinkedList<>();
values.add(searchValue);
values.addAll(Arrays.asList(searchValues));
return withProperty(property, values);
}
代码示例来源:origin: org.jboss.windup.config/windup-config-xml
query.withProperty(propertyName, Boolean.valueOf(value));
} else
query.withProperty(propertyName, QueryPropertyComparisonType.REGEX, value);
else
query.withProperty(propertyName, value);
代码示例来源:origin: windup/windup
query.withProperty(propertyName, Boolean.valueOf(value));
} else
query.withProperty(propertyName, QueryPropertyComparisonType.REGEX, value);
else
query.withProperty(propertyName, value);
内容来源于网络,如有侵权,请联系作者删除!