public static String toCamelCase(String s) {
   return WordUtils.toCamelCase(s);
 }