Here you can find the source of toLowerCaseIdent(String ident)
public static String toLowerCaseIdent(String ident)
//package com.java2s; //License from project: Open Source License public class Main { public static String toLowerCaseIdent(String ident) { return Character.toLowerCase(ident.charAt(0)) + ident.substring(1); }//from w ww .j a v a 2 s .c o m }