com.wangjiegulu.rapidooo.api.OOOControlMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rapidooo-api Show documentation
Show all versions of rapidooo-api Show documentation
Android POJO Converter:Generate scalable and bindable domain objects java class file automatically in compile time.
package com.wangjiegulu.rapidooo.api;
/**
* Author: wangjie Email: [email protected] Date: 2019-06-13.
*/
public enum OOOControlMode {
ATTACH(1000, "ControlMode-ATTACH"),
BIND(2000, "ControlMode-BIND"),
CONVERSION(3000, "ControlMode-CONVERSION");
private int code;
private String desc;
OOOControlMode(int code, String desc) {
this.code = code;
this.desc = desc;
}
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
}