Here you can find the source of titleCase(String raw)
public static String titleCase(String raw)
//package com.java2s; //License from project: LGPL public class Main { /** Returns a TitleCase version of the String supplied */ public static String titleCase(String raw) { String s = raw;/* ww w .ja va 2s . c o m*/ if (s != null) { if (s.length() > 1) { s = s.substring(0, 1).toUpperCase() + s.substring(1); } else if (s.length() == 1) { s = s.toUpperCase(); } } return s; } }