/** returns true of the string is empty or null */
 private static boolean isEmptyOrNull(CharSequence s) {
   return s == null || (s.length() == 0);
 }