List of utility methods to do String Camel Case Format
if (s == null) { return null; StringBuffer in = new StringBuffer(s); while (in.indexOf("_") != -1) { int x = in.indexOf("_"); in.replace(x, x + 2, in.substring(x + 1, x + 2).toUpperCase()); return in.toString();