NIMSDK-AOS  10.9.50
V2NIMMessageQueryDirection.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.v2.message.enums;
2 
3 import androidx.annotation.Nullable;
4 
6  // 按时间戳降序查询
8  // 按时间戳升序查询
10  ;
11 
12  private final int value;
13 
15  this.value = value;
16  }
17 
18  public int getValue() {
19  return value;
20  }
21 
22  @Nullable
23  public static V2NIMMessageQueryDirection typeOfValue(int value) {
24  for (V2NIMMessageQueryDirection type : values()) {
25  if (type.value == value) {
26  return type;
27  }
28  }
29  return null;
30  }
31 }