空字符串的处理
StrUtil.isBlank(str) 字符串为空或者null 返回true
StrUtil.isBlankIfStr(obj) obj为null 或者 obj是字符序列并且为空字符串
StrUtil.isNotBlank(CharSequence str) 不为空和null 返回true
StrUtil.hasBlank(CharSequence... strs) strs 中有空或者null 返回true
StrUtil.isAllBlank(CharSequence... strs) Strs全部为空或者null 返回true
isEmpty
isEmptyIfStr(Object obj)
isNotEmpty(CharSequence str)
空格处理
trim(CharSequence str)
trim(String[] strs)
trimToEmpty(CharSequence str) str为null 返回 ""
trimToNull(CharSequence str) Str为“” 返回null
trimStart(CharSequence str)