Here you can find the source of capitalizeWord(String s)
private static String capitalizeWord(String s)
//package com.java2s; //License from project: Open Source License public class Main { private static String capitalizeWord(String s) { if (s.length() > 1) { return s.substring(0, 1).toUpperCase() + s.substring(1, s.length()).toLowerCase(); }/*from w ww. j ava2 s. c om*/ return s.toUpperCase(); } }