Here you can find the source of toTitleCase(final String text)
public static String toTitleCase(final String text)
//package com.java2s; //License from project: Open Source License public class Main { public static String toTitleCase(final String text) { if (text == null) { return null; }/*from www.jav a 2s . c om*/ if ("".equals(text)) { return ""; } return text.substring(0, 1).toUpperCase() + text.substring(1); } }