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

cn.hippo4j.common.enums.DelEnum Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.hippo4j.common.enums;

/**
 * Del enum.
 *
 * @author chen.ma
 * @date 2021/3/26 18:45
 */
public enum DelEnum {

    /**
     * Normal state
     */
    NORMAL("0"),

    /**
     * Deleted state
     */
    DELETE("1");

    private final String statusCode;

    DelEnum(String statusCode) {
        this.statusCode = statusCode;
    }

    public String getCode() {
        return this.statusCode;
    }

    public Integer getIntCode() {
        return Integer.parseInt(this.statusCode);
    }

    @Override
    public String toString() {
        return statusCode;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy