Here you can find the source of camelCase(String input)
public static String camelCase(String input)
//package com.java2s; public class Main { public static String camelCase(String input) { return input.substring(0, 1).toLowerCase() + input.substring(1); }//from w ww.j av a 2s . c o m }