NIMSDK-AOS  9.16.0
QChatMediaErrorType.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qcmedia.enums;
2 
6 public enum QChatMediaErrorType {
9  ;
10  private int value;
11 
12  QChatMediaErrorType(int value) {
13  this.value = value;
14  }
15 
16  public int getValue() {
17  return value;
18  }
19 
20  public static QChatMediaErrorType typeOfValue(int value) {
21  for (QChatMediaErrorType e : values()) {
22  if (e.getValue() == value) {
23  return e;
24  }
25  }
26  return null;
27  }
28 }