add commnent

This commit is contained in:
Looly 2022-08-26 16:17:05 +08:00
parent 80a9af499c
commit 54ffe1ed0e

View File

@ -623,7 +623,12 @@ public class CharSequenceUtil extends StrChecker {
} }
/** /**
* 检查指定字符串中是否只包含给定的字符 * 检查指定字符串中是否只包含给定的字符<br>
* <ul>
* <li>str nulltestChars 也是 null直接返回 true</li>
* <li>str nulltestChars 不是 null直接返回 true</li>
* <li>str 不是 nulltestChars null直接返回 false</li>
* </ul>
* *
* @param str 字符串 * @param str 字符串
* @param testChars 检查的字符 * @param testChars 检查的字符