NIMSDK-AOS  9.21.15
QChatServerSearchSortEnum.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.enums;
2 
3 /**
4  * 服务器搜索排序条件
5  */
7  /**
8  * 自定义权重排序
9  */
11  /**
12  * 创建时间,默认
13  */
15  /**
16  * 服务器总人数
17  */
19  ;
20 
21  private final int value;
22 
24  this.value = value;
25  }
26 
27  public int getValue() {
28  return value;
29  }
30 
31  public static QChatServerSearchSortEnum typeOfValue(int value) {
32  for (QChatServerSearchSortEnum e : values()) {
33  if (e.getValue() == value) {
34  return e;
35  }
36  }
37  return null;
38  }
39 }