Here you can find the source of toLowerCase0(String string)
public static String toLowerCase0(String string)
//package com.java2s; //License from project: LGPL public class Main { public static String toLowerCase0(String string) { return Character.toLowerCase(string.charAt(0)) + string.substring(1); }//from www.j a va 2 s . c o m }