Here you can find the source of capitalizeFully(String string)
public static String capitalizeFully(String string)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalizeFully(String string) { if (string.length() == 0) { return string; }/*from w w w .j a v a2 s. c o m*/ if (string.length() == 1) { return string.toUpperCase(); } return string.substring(0, 1).toUpperCase() + string.substring(1).toLowerCase(); } }