cn.hutool.core.lang.EnumItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.core.lang;
import java.io.Serializable;
/**
* 枚举元素通用接口,在自定义枚举上实现此接口可以用于数据转换
* 数据库保存时建议保存 intVal()而非ordinal()防备需求变更
*
* @param Enum类型
* @author nierjia
* @since 5.4.2
*/
public interface EnumItem> extends Serializable {
String name();
/**
* 在中文语境下,多数时间枚举会配合一个中文说明
*
* @return enum名
*/
default String text() {
return name();
}
int intVal();
/**
* 获取所有枚举对象
*
* @return 枚举对象数组
*/
@SuppressWarnings("unchecked")
default E[] items() {
return (E[]) this.getClass().getEnumConstants();
}
/**
* 通过int类型值查找兄弟其他枚举
*
* @param intVal int值
* @return Enum
*/
default E fromInt(Integer intVal) {
if (intVal == null) {
return null;
}
E[] vs = items();
for (E enumItem : vs) {
if (enumItem.intVal() == intVal) {
return enumItem;
}
}
return null;
}
/**
* 通过String类型的值转换,根据实现可以用name/text
*
* @param strVal String值
* @return Enum
*/
default E fromStr(String strVal) {
if (strVal == null) {
return null;
}
E[] vs = items();
for (E enumItem : vs) {
if (strVal.equalsIgnoreCase(enumItem.name())) {
return enumItem;
}
}
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy