houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5
6 /**
7  * 表情
8  * 
9  * @author : 260611
10  * @since : Created in 2021/10/19 20:21
11  */
12 public class EM_EMOTION_TYPE extends NetSDKLib.SdkStructure {
13
14     /**
15      *  未知
16      */
17     public static final int                    EM_EMOTION_TYPE_UNKNOWN = 0;
18     /**
19      *  普通/正常
20      */
21     public static final int                    EM_EMOTION_TYPE_NORMAL = 1;
22     /**
23      *  微笑
24      */
25     public static final int                    EM_EMOTION_TYPE_SMILE = 2;
26     /**
27      *  愤怒
28      */
29     public static final int                    EM_EMOTION_TYPE_ANGER = 3;
30     /**
31      *  悲伤
32      */
33     public static final int                    EM_EMOTION_TYPE_SADNESS = 4;
34     /**
35      *  厌恶
36      */
37     public static final int                    EM_EMOTION_TYPE_DISGUST = 5;
38     /**
39      *  害怕
40      */
41     public static final int                    EM_EMOTION_TYPE_FEAR = 6;
42     /**
43      *  惊讶
44      */
45     public static final int                    EM_EMOTION_TYPE_SURPRISE = 7;
46     /**
47      *  正常
48      */
49     public static final int                    EM_EMOTION_TYPE_NEUTRAL = 8;
50     /**
51      *  大笑
52      */
53     public static final int                    EM_EMOTION_TYPE_LAUGH = 9;
54     /**
55      *  高兴
56      */
57     public static final int                    EM_EMOTION_TYPE_HAPPY = 10;
58     /**
59      *  困惑
60      */
61     public static final int                    EM_EMOTION_TYPE_CONFUSED = 11;
62     /**
63      *  尖叫
64      */
65     public static final int                    EM_EMOTION_TYPE_SCREAM = 12;
66     /**
67      *  平静
68      */
69     public static final int                    EM_EMOTION_TYPE_CALMNESS = 13;
70 }