Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
/**
* To proper case.
*
* @param s
* the s
* @return the string
*/
private static String toProperCase(String s) {
return s.substring(0, 1).toUpperCase() + s.substring(1).toLowerCase();
}
}