mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
add methods
This commit is contained in:
parent
84f0edcd15
commit
2953b27dbc
@ -3,11 +3,12 @@
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
# 5.8.2.M1 (2022-05-20)
|
||||
# 5.8.2.M1 (2022-05-23)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 BeanUtil拷贝对象增加空检查(issue#I58CJ3@Gitee)
|
||||
* 【db 】 Column#size改为long
|
||||
* 【core 】 ClassUtil增加isInterface等方法(pr#623@Gitee)
|
||||
*
|
||||
### 🐞Bug修复
|
||||
* 【extra 】 修复SshjSftp初始化未能代入端口配置问题(issue#2333@Github)
|
||||
|
@ -1116,6 +1116,7 @@ public class ClassUtil {
|
||||
*
|
||||
* @param clazz 类
|
||||
* @return 是否为抽象类或接口
|
||||
* @since 5.8.2
|
||||
*/
|
||||
public static boolean isAbstractOrInterface(Class<?> clazz) {
|
||||
return isAbstract(clazz) || isInterface(clazz);
|
||||
@ -1126,6 +1127,7 @@ public class ClassUtil {
|
||||
*
|
||||
* @param clazz 类
|
||||
* @return 是否为接口
|
||||
* @since 5.8.2
|
||||
*/
|
||||
public static boolean isInterface(Class<?> clazz) {
|
||||
return clazz.isInterface();
|
||||
|
@ -2766,15 +2766,4 @@ public class NumberUtil {
|
||||
}
|
||||
}
|
||||
// ------------------------------------------------------------------------------------------- Private method end
|
||||
|
||||
/**
|
||||
* null转换为BigDecimal<br>
|
||||
*
|
||||
* @param bigDecimal 被转换的值
|
||||
* @return BigDecimal
|
||||
* @since 5.8.2
|
||||
*/
|
||||
public static BigDecimal nullToZero(BigDecimal bigDecimal) {
|
||||
return bigDecimal == null ? BigDecimal.ZERO : bigDecimal;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user