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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 251823
 * @description 人体检测及人体识别支持的身体特征
 * @date 2021/01/11
 */
public enum CFG_EM_BODY_TRAIT {
    // 未知
    CFG_EM_BODY_TRAIT_UNKNOWN(0, "未知"),
 
    // 性别
    CFG_EM_BODY_TRAIT_SEX(1, "性别"),
 
    // 年龄组
    CFG_EM_BODY_TRAIT_AGEGROUP(2, "年龄组"),
 
    // 上衣
    CFG_EM_BODY_TRAIT_COATTYPE(3, "上衣"),
 
    // 裤子
    CFG_EM_BODY_TRAIT_TROUSERSTYPE(4, "裤子"),
 
    // 人体角度
    CFG_EM_BODY_TRAIT_ANGLE(5, "人体角度"),
 
    // 上衣模式
    CFG_EM_BODY_TRAIT_UPPERPATTERN(6, "上衣模式"),
 
    // 裤子颜色
    CFG_EM_BODY_TRAIT_TROUSERSCOLOR(7, "裤子颜色"),
 
    // 打伞
    CFG_EM_BODY_TRAIT_UMBRELLA(8, "打伞"),
 
    // 雨伞颜色
    CFG_EM_BODY_TRAIT_UMBRELLACOLOR(9, "雨伞颜色"),
 
    // 胸前报东西
    CFG_EM_BODY_TRAIT_HOLD(10, "胸前报东西"),
 
    // 裤子模式
    CFG_EM_BODY_TRAIT_TROUSERSPATTERN(11, "裤子模式"),
 
    // 帽子款式
    CFG_EM_BODY_TRAIT_HATTYPE(12, "帽子款式"),
 
    // 帽子颜色
    CFG_EM_BODY_TRAIT_HATCOLOR(13, "帽子颜色"),
 
    // 上衣款式
    CFG_EM_BODY_TRAIT_UPPERTYPE(14, "上衣款式"),
 
    // 上衣颜色
    CFG_EM_BODY_TRAIT_COATCOLOR(15, "上衣颜色"),
 
    // 发型
    CFG_EM_BODY_TRAIT_HAIRSTYLE(16, "发型"),
 
    // 头发颜色
    CFG_EM_BODY_TRAIT_HAIRCOLOR(17, "头发颜色"),
    
    // 鞋子款式
    CFG_EM_BODY_TRAIT_SHOESTYPE(18, "鞋子款式"),
    
    // 鞋子颜色
    CFG_EM_BODY_TRAIT_SHOESCOLOR(19, "鞋子颜色"),
    // 箱包款式
    CFG_EM_BODY_TRAIT_BAG(20, "箱包款式"),
    
    // 箱包颜色
    CFG_EM_BODY_TRAIT_BAGCOLOR(21, "箱包颜色"),
    
    // 口罩
    CFG_EM_BODY_TRAIT_MASK(22, "口罩"),
 
    // 口罩颜色
    CFG_EM_BODY_TRAIT_MASKCOLOR(23, "口罩颜色");
 
    private int value;
    private String note;
 
    private CFG_EM_BODY_TRAIT(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
    public String getNote() {
        return note;
    }
 
    public int getValue() {
        return value;
    }
 
    public static String getNoteByValue(int givenValue) {
        for (CFG_EM_BODY_TRAIT enumType : CFG_EM_BODY_TRAIT.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (CFG_EM_BODY_TRAIT enumType : CFG_EM_BODY_TRAIT.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
}