NIMSDK-AOS
10.5.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
enums
QChatMuteNotifyScope.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.enums;
2
6
public
enum
QChatMuteNotifyScope
{
10
TARGET_ONLY
(1),
14
ALL
(2),
15
;
16
17
private
int
value;
18
19
QChatMuteNotifyScope
(
int
value) {
20
this.value = value;
21
}
22
23
public
int
getValue
() {
24
return
value;
25
}
26
27
public
static
QChatMuteNotifyScope
typeOfValue
(
int
value) {
28
for
(
QChatMuteNotifyScope
e : values()) {
29
if
(e.getValue() == value) {
30
return
e;
31
}
32
}
33
return
null;
34
}
35
}
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope.TARGET_ONLY
TARGET_ONLY
仅通知被操作人
Definition:
QChatMuteNotifyScope.java:10
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope.QChatMuteNotifyScope
QChatMuteNotifyScope(int value)
Definition:
QChatMuteNotifyScope.java:19
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope.typeOfValue
static QChatMuteNotifyScope typeOfValue(int value)
Definition:
QChatMuteNotifyScope.java:27
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope.getValue
int getValue()
Definition:
QChatMuteNotifyScope.java:23
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope.ALL
ALL
通知所有人
Definition:
QChatMuteNotifyScope.java:14
com.netease.nimlib.sdk.qchat.enums.QChatMuteNotifyScope
禁言后的通知范围类型
Definition:
QChatMuteNotifyScope.java:6
生成于 2024年 十月 15日 星期二 18:40:26 , 为 NIMSDK-AOS使用
1.8.13