JDK8 过滤list<对象>中某个值

JDK8 过滤list<对象>中某个值

//
//判断传递过来的参数是否有带小数点的  如果有带小数的直接返回错误 
List<JtlDeviceThresholdDTO> collect = list.stream().filter(value -> value.getThresholdValue().indexOf(".") > 0).collect(Collectors.toList());
if(collect.size()>0){
    br.setErrorMsg("参数有误,不能传递带小数的参数!");
    return br;
}
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » JDK8 过滤list<对象>中某个值