NIMSDK-AOS  10.9.50
V2NIMChatroomQueueLevelMode.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.v2.chatroom.enums;
2 
3 /**
4  * 聊天室队列操作权限
5  */
7  /**
8  * 所有人都有权限操作
9  */
11 
12  /**
13  * 只有创建者/管理员才能操作
14  */
16  ;
17 
18 
19  private int value;
20 
22  this.value = value;
23  }
24 
25  public final int getValue() {
26  return this.value;
27  }
28 
29  public static V2NIMChatroomQueueLevelMode typeOfValue(int value) {
30  for (V2NIMChatroomQueueLevelMode type : values()) {
31  if (type.value == value) {
32  return type;
33  }
34  }
35  return null;
36  }
37 }