NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
enums
QChatNotifyReason.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.enums;
2
3
/**
4
* 下发通知原因
5
*/
6
public
enum
QChatNotifyReason
{
7
/**
8
* 通知channel里的所有人
9
*/
10
notifyAll
(1),
11
/**
12
* 通知给订阅的人
13
*/
14
notifySubscribe
(2),
15
;
16
17
private
int
value;
18
19
QChatNotifyReason
(
int
value) {
20
this.value = value;
21
}
22
23
public
int
getValue
() {
24
return
value;
25
}
26
27
public
static
QChatNotifyReason
typeOfValue
(
int
value) {
28
for
(
QChatNotifyReason
e : values()) {
29
if
(e.getValue() == value) {
30
return
e;
31
}
32
}
33
return
null;
34
}
35
}
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason
下发通知原因
Definition:
QChatNotifyReason.java:6
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason.getValue
int getValue()
Definition:
QChatNotifyReason.java:23
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason.typeOfValue
static QChatNotifyReason typeOfValue(int value)
Definition:
QChatNotifyReason.java:27
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason.notifyAll
notifyAll
通知channel里的所有人
Definition:
QChatNotifyReason.java:10
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason.QChatNotifyReason
QChatNotifyReason(int value)
Definition:
QChatNotifyReason.java:19
com.netease.nimlib.sdk.qchat.enums.QChatNotifyReason.notifySubscribe
notifySubscribe
通知给订阅的人
Definition:
QChatNotifyReason.java:14
生成于 2024年 十月 16日 星期三 10:25:05 , 为 NIMSDK-AOS使用
1.8.13