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