NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatDimension.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.enums;
2
3public enum QChatDimension {
4 /**
5 * 频道维度
6 */
8 /**
9 * 服务器维度
10 */
12 /**
13 * 频道分组维度
14 */
16 ;
17
18 private int value;
19
20 QChatDimension(int value) {
21 this.value = value;
22 }
23
24 public int getValue() {
25 return value;
26 }
27
28 public static QChatDimension typeOfValue(int value) {
29 for (QChatDimension e : values()) {
30 if (e.getValue() == value) {
31 return e;
32 }
33 }
34 return null;
35 }
36}
static QChatDimension typeOfValue(int value)