Check whether string s is empty.
(String s)
| 186 | |
| 187 | /** Check whether string s is empty. */ |
| 188 | public static boolean isEmpty(String s) { |
| 189 | return ((s == null) || (s.length() == 0)); |
| 190 | } |
| 191 | |
| 192 | |
| 193 | /** Check whether collection c is empty. */ |
no test coverage detected