NIMSDK-AOS  9.16.0
QChatDimension.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.enums;
2 
3 public enum QChatDimension {
7  CHANNEL(1),
11  SERVER(2),
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)