NIMSDK-AOS  9.19.0
NosTransferStatus.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.nos.constant;
2 
3 /**
4  * NOS文件传输状态枚举类
5  */
6 public enum NosTransferStatus {
7 
8  /**
9  * 默认状态,未开始
10  */
11  def(0),
12  /**
13  * 正在传输
14  */
16  /**
17  * 传输成功
18  */
20  /**
21  * 传输失败
22  */
23  fail(3);
24 
25  private int value;
26 
27  NosTransferStatus(int value){
28  this.value = value;
29  }
30 
31  public static NosTransferStatus statusOfValue(int status) {
32  for (NosTransferStatus e : values()) {
33  if (e.getValue() == status) {
34  return e;
35  }
36  }
37  return def;
38  }
39 
40  public int getValue(){
41  return value;
42  }
43 }
static NosTransferStatus statusOfValue(int status)