zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.changhong.epc.count.service.tool;
 
import com.changhong.epc.bean.count.MasterInfo;
import com.changhong.epc.bean.tenant.master.MasterEleValue;
import com.iemsoft.framework.cloud.core.tools.StringUtil;
 
import java.util.Objects;
import java.util.Set;
import java.util.function.Function;
import java.util.function.Supplier;
 
public class MasterListTool {
 
    /**
     * 优先添加,不为空的和后来的
     * @param arrays
     * @param functionEmpty
     * @param args
     * @param <T>
     */
    public static <T> void add(Boolean replace, Set<T> arrays, Function<T, Boolean> functionEmpty, T... args){
        if(args == null || args.length == 0){
            return;
        }
        // 忽略 出发站点、出发地
 
 
        for(T arg : args){
            if(functionEmpty.apply(arg)) {
                continue;
            }
            if(replace) {
                if (arrays.contains(arg)) {
                    arrays.remove(arg);
                }
                arrays.add(arg);
            }else{
                arrays.add(arg);
            }
        }
    }
 
 
    @FunctionalInterface
    public interface FunctionEmpty<T>{
 
        boolean isEmpty(T arg);
 
    }
 
    public static boolean valIsEmpty(MasterInfo masterInfo){
        return StringUtil.isBlank(Objects.toString(masterInfo.getMeVal()));
    }
 
    public static boolean valIsEmpty(MasterEleValue masterEleValue){
        return StringUtil.isBlank(masterEleValue.getMvCode());
    }
}