NIMSDK-AOS  9.16.0
QChatInviteApplyRecordType.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.enums;
2 
10  APPLY(1),
14  INVITE(2),
27  ;
28 
29  private int value;
30 
32  this.value = value;
33  }
34 
35  public int getValue() {
36  return value;
37  }
38 
39  public static QChatInviteApplyRecordType typeOfValue(int value) {
40  for (QChatInviteApplyRecordType e : values()) {
41  if (e.getValue() == value) {
42  return e;
43  }
44  }
45  return null;
46  }
47 }