NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatMessageSearchSortEnum.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.enums;
2
3/**
4 * 消息搜索排序条件
5 */
7 /**
8 * 创建时间,默认
9 */
11 ;
12
13 private final int value;
14
16 this.value = value;
17 }
18
19 public int getValue() {
20 return value;
21 }
22
23 public static QChatMessageSearchSortEnum typeOfValue(int value) {
24 for (QChatMessageSearchSortEnum e : values()) {
25 if (e.getValue() == value) {
26 return e;
27 }
28 }
29 return null;
30 }
31}