Here you can find the source of capitaliseName(String name)
private static String capitaliseName(String name)
//package com.java2s; //License from project: Apache License public class Main { private static String capitaliseName(String name) { return name.substring(0, 1).toUpperCase() + name.substring(1); }/*from ww w .jav a 2 s .co m*/ }