Subversion Repositories eFlore/Applications.coel

Rev

Rev 674 | Rev 948 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 674 Rev 798
Line 9... Line 9...
9
	 *  @result ChaineDeCaractere
9
	 *  @result ChaineDeCaractere
10
	 */
10
	 */
Line 11... Line 11...
11
	
11
	
Line 12... Line 12...
12
	public static String ucFirst(String inputStr)	{
12
	public static String ucFirst(String inputStr)	{
13
		
13
		
14
		if (inputStr == null)	{
14
		if (isEmpty(inputStr))	{
Line 15... Line 15...
15
			return "";
15
			return "";
16
		}
16
		}
-
 
17
		
-
 
18
		return inputStr.substring(0,1).toUpperCase() + inputStr.substring(1, inputStr.length());
-
 
19
	}
-
 
20
	
-
 
21
	public static boolean isEmpty(String inputStr)	{
17
		
22