Capitalizes a String changing the first character to title case as * per {@link Character#toTitleCase(int)}. No other characters are changed.
* - *For a word based algorithm, see {@link org.apache.commons.lang3.text.WordUtils#capitalize(String)}. + *
For a word based algorithm, see {@link org.apache.commons.text.WordUtils#capitalize(String)}. * A {@code null} input String returns {@code null}.
* *@@ -535,7 +535,7 @@ public class StringUtils { * * @param str the String to capitalize, may be null * @return the capitalized String, {@code null} if null String input - * @see org.apache.commons.lang3.text.WordUtils#capitalize(String) + * @see org.apache.commons.text.WordUtils#capitalize(String) * @see #uncapitalize(String) * @since 2.0 */ @@ -8941,7 +8941,7 @@ public class StringUtils { *
For a word based algorithm, see {@link org.apache.commons.lang3.text.WordUtils#swapCase(String)}. + *
For a word based algorithm, see {@link org.apache.commons.text.WordUtils#swapCase(String)}. * A {@code null} input String returns {@code null}.
* *@@ -9278,7 +9278,7 @@ public class StringUtils { *Uncapitalizes a String, changing the first character to lower case as * per {@link Character#toLowerCase(int)}. No other characters are changed.
* - *For a word based algorithm, see {@link org.apache.commons.lang3.text.WordUtils#uncapitalize(String)}. + *
For a word based algorithm, see {@link org.apache.commons.text.WordUtils#uncapitalize(String)}. * A {@code null} input String returns {@code null}.
* *@@ -9291,7 +9291,7 @@ public class StringUtils { * * @param str the String to uncapitalize, may be null * @return the uncapitalized String, {@code null} if null String input - * @see org.apache.commons.lang3.text.WordUtils#uncapitalize(String) + * @see org.apache.commons.text.WordUtils#uncapitalize(String) * @see #capitalize(String) * @since 2.0 */