add methods

This commit is contained in:
Looly 2022-05-09 11:33:48 +08:00
parent 62f851142b
commit cf9d2f62c1
2 changed files with 25 additions and 0 deletions

View File

@ -6,6 +6,7 @@
# 5.8.1.M1 (2022-05-09)
### 🐣新特性
* 【core 】 BooleanUtil增加toBooleanObject方法issue#I56AG3@Gitee
### 🐞Bug修复
* 【core 】 MapUtil.map对null友好且修复了测试用例中分组问题pr#614@Gitee

View File

@ -15,6 +15,8 @@ public class BooleanUtil {
/** 表示为真的字符串 */
private static final Set<String> TRUE_SET = CollUtil.newHashSet("true", "yes", "y", "t", "ok", "1", "on", "", "", "", "", "");
/** 表示为假的字符串 */
private static final Set<String> FALSE_SET = CollUtil.newHashSet("false", "no", "n", "f", "0", "off", "", "", "", "", "×");
/**
* 取相反值
@ -85,6 +87,28 @@ public class BooleanUtil {
return false;
}
/**
* 转换字符串为boolean值<br>
* 如果为["true", "yes", "y", "t", "ok", "1", "on", "", "", "", "", ""]返回{@code true}<br>
* 如果为["false", "no", "n", "f", "0", "off", "", "", "", "", "×"]返回{@code false}<br>
* 其他情况返回{@code null}
*
* @param valueStr 字符串
* @return boolean值
* @since 5.8.1
*/
public static Boolean toBooleanObject(String valueStr) {
if (StrUtil.isNotBlank(valueStr)) {
valueStr = valueStr.trim().toLowerCase();
if(TRUE_SET.contains(valueStr)){
return true;
} else if(FALSE_SET.contains(valueStr)){
return false;
}
}
return null;
}
/**
* boolean值转为int
*