Java过滤实现

过滤实现,先new一个新的集合(list),遍历旧的集合,通过continue,

不符合条件的不再添加到集合,然后重新设值。

eg:

/**

     * 对订单相关人信息进行过滤
     * @param response
     */
    private void filterContactInfo(RopBaseOrderResponse response) {
        // 订单相关人信息
        List<RopOrdPersonBaseVo> orderPersonList = response.getOrderPersonList();
        if(null == orderPersonList || orderPersonList.isEmpty()) {
            return;
        }
        List<RopOrdPersonBaseVo> tempList = new ArrayList<RopOrdPersonBaseVo>();
        for (RopOrdPersonBaseVo personInfo : orderPersonList) {
            if(null == orderPersonList) {
                continue;
            }
            // 紧急联系人为空,则界面不展示紧急联系人  bug: http://pms.lvmama.com/zentao/bug-view-42009.html
            if("EMERGENCY".equalsIgnoreCase(personInfo.getPersonType())) {
                if(StringUtils.isBlank(personInfo.getFullName())) {
                    continue;
                }
            }
            tempList.add(personInfo);
        }
        // 用过滤后的结果,重置订单相关联系人
        response.setOrderPersonList(tempList);
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值