com.doyospy.core.define.BooleanEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doyospy-all Show documentation
Show all versions of doyospy-all Show documentation
Doyospy是一个小而全的基于SpringBoot的java工具类库,通过静态方法封装,方便开发者使用,降低学习成本并提升工作效率。
The newest version!
package com.doyospy.core.define;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* 布尔枚举
* @author Robin
*/
@Getter
@AllArgsConstructor
public enum BooleanEnum {
TRUE(1, "是"),
FALSE(0, "否");
private final Integer value;
private final String desc;
}