add methods

This commit is contained in:
Looly 2022-05-23 10:43:28 +08:00
parent 84f0edcd15
commit 2953b27dbc
3 changed files with 4 additions and 12 deletions

View File

@ -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

View File

@ -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();

View File

@ -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;
}
}