com.alibaba.edas.schedulerx.SchedulerXLogLevel Maven / Gradle / Ivy
package com.alibaba.edas.schedulerx;
/**
* Created by yanshan.sy on 2016/11/18.
*/
public enum SchedulerXLogLevel {
ERROR(0,"error"),
WARN(1,"warn"),
INFO(2,"info"),
DEBUG(3,"debug");
private int code;
private String information;
private SchedulerXLogLevel(int code, String information) {
this.code = code;
this.information = information;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getInformation() {
return information;
}
public void setInformation(String information) {
this.information = information;
}
}