org.jboss.windup.config.query.Query.withProperty()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(133)

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

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);

相关文章