添加EnumUtil#getBy(Class, Func1, Object)方法

This commit is contained in:
Looly 2024-12-15 22:51:28 +08:00
parent 603b7aa870
commit 4e2c460ab6
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
* 【core 】 优化MAC地址正则issue#IB95X4@Gitee
* 【json 】 JSON的getByPath方法新增更为通用的指定出参类型重载pr#3814@Github
* 【core 】 DateUtil.parseUTC方法标记废弃改名为parseISO8601issue#IBB6I5@Gitee
* 【core 】 添加EnumUtil#getBy(Class, Func1, Object)方法pr#1283@Gitee
### 🐞Bug修复
* 【crypto 】 修复JWTSignerUtil.createSigner中algorithmId未转换问题issue#3806@Github

View File

@ -260,11 +260,11 @@ public class EnumUtil {
/**
* 通过 某字段对应值 获取 枚举获取不到时为 {@code null}
* <p/>
* <p>
* {@link LambdaUtil#getRealClass(Func1)}} 是相对耗时的
* 如果枚举值比较多,那么{@link EnumUtil#getBy(Func1, Object)} 方法
* 大部分时间都是被{@link LambdaUtil#getRealClass(Func1)}}所消耗的
* <br/>
* <br>
* 如果可以在编码过程中可以提供对应的枚举类 该方法与枚举的{@code Enum.values()}方法是差不多的
*
* @param enumClass 枚举类 {@code null}返回{@code null}