/** * Returns a capitalized version of the string. * * @param thePhrase the String to be capitalized * @return the capitalized String */ String transform(String thePhrase) { return thePhrase.toUpperCase(); }