com.sodius.mdw.core.util
Class StringUtils

java.lang.Object
  extended by com.sodius.mdw.core.util.StringUtils

public final class StringUtils
extends Object

Operations on String.

This class cannot be instantiated or subclassed by clients.


Method Summary
static String capitalize(String value)
          Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

capitalize

public static String capitalize(String value)

Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char). No other letters are changed.

Parameters:
value - the String to capitalize, may be null
Returns:
the capitalized String, null if null String input