Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 47081
 * @version 1.0
 * @description 路人库满时覆盖策略
 * @date 2021/2/22
 */
public enum EM_PASSERBY_DB_OVERWRITE_TYPE {
  /** 未知 */
  EM_OVERWRITE_TYPE_UNKNOWN(-1, "未知"),
  /** 满停止 */
  EM_OVERWRITE_TYPE_FULL_STOP(0, "满停止"),
  /** 满覆盖 */
  EM_OVERWRITE_TYPE_FULL_COVERAGE(1, "满覆盖");
  private int type;
  private String desc;
 
  EM_PASSERBY_DB_OVERWRITE_TYPE(int type, String desc) {
    this.type = type;
    this.desc = desc;
  }
 
  public int getType() {
    return type;
  }
 
  public String getDesc() {
    return desc;
  }
 
  public static EM_PASSERBY_DB_OVERWRITE_TYPE getOverwriteType(int type) {
    for (EM_PASSERBY_DB_OVERWRITE_TYPE overwriteType : EM_PASSERBY_DB_OVERWRITE_TYPE.values()) {
      if (overwriteType.type == type) {
        return overwriteType;
      }
    }
    return EM_OVERWRITE_TYPE_UNKNOWN;
  }
}