[LANG-1664] Adjust doc to show argument is a primitive integer / character code point

This commit is contained in:
Roland Kreuzer 2021-10-30 14:58:48 +02:00 committed by Bruno P. Kinoshita
parent b8b76fcd11
commit 3942fad3c2
1 changed files with 3 additions and 3 deletions

View File

@ -8589,7 +8589,7 @@ public class StringUtils {
* </pre>
*
* @param str the String to get a substring from, may be null
* @param separator the character to search.
* @param separator the character (Unicode code point) to search.
* @return the substring after the first occurrence of the separator,
* {@code null} if null String input
* @since 3.11
@ -8668,7 +8668,7 @@ public class StringUtils {
* </pre>
*
* @param str the String to get a substring from, may be null
* @param separator the String to search for, may be null
* @param separator the character (Unicode code point) to search.
* @return the substring after the last occurrence of the separator,
* {@code null} if null String input
* @since 3.11
@ -8750,7 +8750,7 @@ public class StringUtils {
* </pre>
*
* @param str the String to get a substring from, may be null
* @param separator the String to search for, may be null
* @param separator the character (Unicode code point) to search.
* @return the substring before the first occurrence of the separator, {@code null} if null String input
* @since 3.12.0
*/