Added empty string example for isMixedCase method.

This commit is contained in:
Siva Kumar Edupuganti 2023-01-02 13:15:16 -07:00 committed by Bruno P. Kinoshita
parent 78b4f09d0b
commit 44dfe90597
1 changed files with 1 additions and 0 deletions

View File

@ -3605,6 +3605,7 @@ public class StringUtils {
* <pre>
* StringUtils.isMixedCase(null) = false
* StringUtils.isMixedCase("") = false
* StringUtils.isMixedCase(" ") = false
* StringUtils.isMixedCase("ABC") = false
* StringUtils.isMixedCase("abc") = false
* StringUtils.isMixedCase("aBc") = true