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

com.wangjiegulu.rapidooo.api.OOOControlMode Maven / Gradle / Ivy

Go to download

Android POJO Converter:Generate scalable and bindable domain objects java class file automatically in compile time.

There is a newer version: 1.1.5
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy