All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.model.resp.RespCode Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.litongjava.model.resp;

import java.util.Objects;

/**
 * @author tanyaowu
 * 2017年8月18日 下午3:56:02
 */
public enum RespCode {
  /**
   * 成功的响应
   */
  OK(1),
  /**
   * 失败的响应
   */
  FAIL(2),
  /**
   * 未知的响应
   */
  UNKNOWN(3);

  public static RespCode from(int value) {
    RespCode[] values = RespCode.values();
    for (RespCode v : values) {
      if (Objects.equals(v.value, value)) {
        return v;
      }
    }
    return null;
  }

  int value;

  private RespCode(int value) {
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy