NIMSDK-AOS  9.19.0
QChatChannelMode.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.enums;
2 
3 /**
4  * 频道查看模式
5  */
6 public enum QChatChannelMode {
7  /**
8  * 公开的
9  */
10  PUBLIC(0),
11  /**
12  * 私密的
13  */
14  PRIVATE(1)
15  ;
16 
17  private final int value;
18 
19  QChatChannelMode(int value) {
20  this.value = value;
21  }
22 
23  public int getValue() {
24  return value;
25  }
26 
27  public static QChatChannelMode typeOfValue(int value) {
28  for (QChatChannelMode e : values()) {
29  if (e.getValue() == value) {
30  return e;
31  }
32  }
33  return null;
34  }
35 }
static QChatChannelMode typeOfValue(int value)