Here you can find the source of capitalize(String word)
public static String capitalize(String word)
//package com.java2s; //License from project: Open Source License public class Main { public static String capitalize(String word) { if (word.length() == 0) return word; switch (word) { case "of": case "the": case "in": case "with": case "and": case "for": case "by": return word; default:/*from w w w .ja v a 2 s .c o m*/ return word.substring(0, 1).toUpperCase() + word.substring(1); } } }