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

com.zhuang.distributedlock.enums.LockStatus Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.zhuang.distributedlock.enums;

public enum LockStatus {

    RELEASED(0, "已释放"),
    LOCKED(1, "已锁定");

    LockStatus(Integer value, String name) {
        this.value = value;
        this.name = name;
    }

    private Integer value;
    private String name;

    public Integer getValue() {
        return value;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy