From 910d8a0d66712d064f59e18fd0bd769010db15f7 Mon Sep 17 00:00:00 2001
From: Henri Yandell Operations on {@link java.lang.String} that are
* Capitalizes a String changing the first letter to title case as
* per {@link Character#toTitleCase(char)}. No other letters are changed. For a word based algorithm, see {@link WordUtils#capitalize(String)}.
+ * For a word based algorithm, see {@link org.apache.commons.lang.text.WordUtils#capitalize(String)}.
* A Uncapitalizes a CharSequence changing the first letter to title case as
* per {@link Character#toLowerCase(char)}. No other letters are changed. For a word based algorithm, see {@link WordUtils#uncapitalize(String)}.
+ * For a word based algorithm, see {@link org.apache.commons.lang.text.WordUtils#uncapitalize(String)}.
* A For a word based algorithm, see {@link WordUtils#swapCase(String)}.
+ * For a word based algorithm, see {@link org.apache.commons.lang.text.WordUtils#swapCase(String)}.
* A NOTE: This method changed in Lang version 2.0.
* It no longer performs a word based algorithm.
* If you only use ASCII, you will notice no change.
- * That functionality is available in WordUtils.null
safe.null
input String returns null
.
@@ -4947,7 +4945,7 @@ public class StringUtils {
*
* @param cs the String to capitalize, may be null
* @return the capitalized String,
null
if null String input
- * @see WordUtils#capitalize(String)
+ * @see org.apache.commons.lang.text.WordUtils#capitalize(String)
* @see #uncapitalize(String)
* @since 2.0
*/
@@ -4969,7 +4967,7 @@ public class StringUtils {
* null
input String returns null
.
@@ -4981,7 +4979,7 @@ public class StringUtils {
*
* @param cs the String to uncapitalize, may be null
* @return the uncapitalized String,
null
if null String input
- * @see WordUtils#uncapitalize(String)
+ * @see org.apache.commons.lang.text.WordUtils#uncapitalize(String)
* @see #capitalize(CharSequence)
* @since 2.0
*/
@@ -5009,7 +5007,7 @@ public class StringUtils {
* null
input String returns null
.
@@ -5021,7 +5019,7 @@ public class StringUtils {
*
null
if null String input