NIMSDK-AOS
9.17.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
enums
QChatChannelBlackWhiteType.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.enums;
2
6
public
enum
QChatChannelBlackWhiteType
{
10
WHITE
(1),
14
BLACK
(2),
15
;
16
17
private
final
int
value;
18
19
QChatChannelBlackWhiteType
(
int
value) {
20
this.value = value;
21
}
22
23
public
int
getValue
() {
24
return
value;
25
}
26
27
public
static
QChatChannelBlackWhiteType
typeOfValue
(
int
value) {
28
for
(
QChatChannelBlackWhiteType
e : values()) {
29
if
(e.getValue() == value) {
30
return
e;
31
}
32
}
33
return
null;
34
}
35
}
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType.getValue
int getValue()
Definition:
QChatChannelBlackWhiteType.java:23
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType.QChatChannelBlackWhiteType
QChatChannelBlackWhiteType(int value)
Definition:
QChatChannelBlackWhiteType.java:19
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType.BLACK
BLACK
黑名单
Definition:
QChatChannelBlackWhiteType.java:14
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType.WHITE
WHITE
白名单
Definition:
QChatChannelBlackWhiteType.java:10
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType.typeOfValue
static QChatChannelBlackWhiteType typeOfValue(int value)
Definition:
QChatChannelBlackWhiteType.java:27
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType
黑白名单类型
Definition:
QChatChannelBlackWhiteType.java:6
生成于 2024年 七月 4日 星期四 17:33:52 , 为 NIMSDK-AOS使用
1.8.13