当前位置:   article > 正文

【Java Stream Trick】根据多个参数过滤,过滤之前需要校验参数是否存在_java filter根据多个码值过滤

java filter根据多个码值过滤

需求

有一个对象列表,需要根据多个参数进行 filter。但是参数不一定存在,若不存在则跳过,否则过滤。
核心是在 filter 时先判断 paramter 是否存在。

实现

    public static void main(String[] args) {
        List<String> objects = new ArrayList<>();
        objects.add("1");
        objects.add("2");
        objects.add("3");
        filterCollection(objects,"1","");
    }

    public static void filterCollection(List<String> collection, String parameter1, String parameter2) {
        if (parameter1 == null && parameter2 == null) {
            return;
        }

        collection = collection.stream()
                .filter(e -> parameter1.length() < 1|| e.equals(parameter1))
                .filter(e -> parameter2.length() < 1 || e.equals(parameter2))
                .collect(Collectors.toList());

        for (int i = 0; i < collection.size(); i++) {
            System.out.println("collection = " + collection.get(i));
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

输出:

collection = 1
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/310793
推荐阅读
相关标签
  

闽ICP备14008679号