【Java】list对象按某个Boolean属性排序

对象属性如下,期望结果是:查询出来的列表,active为true的在前,false的在后。

【Java】list对象按某个Boolean属性排序_第1张图片

实现如下:

    @Override
    public List findByBelongId(String belongId) {

        List taskNotifyPolicies = taskNotifyPolicyDao.findByBelongId(belongId);

        if (isEmpty(taskNotifyPolicies)) {
            return null;
        }

        Comparator comparator = (o1, o2) -> {
            if (o1.getActive() ^ o2.getActive()) {
                return o1.getActive() ? -1 : 1;
            } else {
                return 0;
            }
        };

        taskNotifyPolicies.sort(comparator);

        return taskNotifyPolicies;
    }

效果如下。生效的提醒在前,失效的在后:

【Java】list对象按某个Boolean属性排序_第2张图片

 

你可能感兴趣的:(Java)