public class Main {
/**
*
* Makes the first letter caps and the rest lowercase.
*
*
*
* For example fooBar
becomes Foobar
.
*
*
* @param data capitalize this
* @return String
*/
static public String firstLetterCaps ( String data )
{
String firstLetter = data.substring(0,1).toUpperCase();
String restLetters = data.substring(1).toLowerCase();
return firstLetter + restLetters;
}
}