判断字符串是否为 null @param str 待校验的字符串 @return true yes, false no
(final String str)
| 70 | * @return {@code true} yes, {@code false} no |
| 71 | */ |
| 72 | private static boolean isEmpty(final String str) { |
| 73 | return (str == null || str.length() == 0); |
| 74 | } |
| 75 | |
| 76 | // = |
| 77 |