mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
布尔枚举新增大写
This commit is contained in:
parent
6245de00a3
commit
5666cc1d83
@ -32,9 +32,9 @@ import java.util.Set;
|
||||
public class BooleanUtil {
|
||||
|
||||
/** 表示为真的字符串 */
|
||||
private static final Set<String> TRUE_SET = SetUtil.of("true", "yes", "y", "t", "ok", "1", "on", "是", "对", "真", "對", "√");
|
||||
private static final Set<String> TRUE_SET = SetUtil.of("true", "yes", "y", "Y", "t", "ok", "1", "on", "是", "对", "真", "對", "√");
|
||||
/** 表示为假的字符串 */
|
||||
private static final Set<String> FALSE_SET = SetUtil.of("false", "no", "n", "f", "0", "off", "否", "错", "假", "錯", "×");
|
||||
private static final Set<String> FALSE_SET = SetUtil.of("false", "no", "n", "N", "f", "0", "off", "否", "错", "假", "錯", "×");
|
||||
|
||||
/**
|
||||
* 取相反值
|
||||
|
Loading…
Reference in New Issue
Block a user