NIMSDK-AOS  9.16.3
QChatMediaAudioProfile.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qcmedia.enums;
2 
6 public enum QChatMediaAudioProfile {
7  DEFAULT(0),
8  STANDARD(1),
14  ;
15  private int value;
16 
18  this.value = value;
19  }
20 
21  public int getValue() {
22  return value;
23  }
24 
25  public static QChatMediaAudioProfile typeOfValue(int value) {
26  for (QChatMediaAudioProfile e : values()) {
27  if (e.getValue() == value) {
28  return e;
29  }
30  }
31  return null;
32  }
33 }