判断字符串是否为 null @param str 待校验的字符串 @return true yes, false no
(final String str)
| 56 | * @return {@code true} yes, {@code false} no |
| 57 | */ |
| 58 | private static boolean isEmpty(final String str) { |
| 59 | return (str == null || str.length() == 0); |
| 60 | } |
| 61 | |
| 62 | // = |
| 63 |