Merge branch 'pr-677'

This closes #677
This commit is contained in:
Bruno P. Kinoshita 2020-12-20 08:43:26 +13:00
commit 413c5f8e89
2 changed files with 9 additions and 4 deletions

View File

@ -71,6 +71,7 @@ The <action> type attribute can be add,update,fix,remove.
<action issue="LANG-1584" type="fix" dev="ggregory" due-to="Arturo Bernal">Refine StringUtils.isNumericSpace #573.</action> <action issue="LANG-1584" type="fix" dev="ggregory" due-to="Arturo Bernal">Refine StringUtils.isNumericSpace #573.</action>
<action issue="LANG-1580" type="fix" dev="ggregory" due-to="Arturo Bernal">Refine StringUtils.deleteWhitespace #569.</action> <action issue="LANG-1580" type="fix" dev="ggregory" due-to="Arturo Bernal">Refine StringUtils.deleteWhitespace #569.</action>
<action issue="LANG-1626" type="fix" dev="ggregory" due-to="Kanak Sony">Correction in Javadoc of some methods. #673</action> <action issue="LANG-1626" type="fix" dev="ggregory" due-to="Kanak Sony">Correction in Javadoc of some methods. #673</action>
<action issue="LANG-1628" type="fix" dev="kinow" due-to="Jarkko Rantavuori">Javadoc for RandomStringUtils.random() letters, numbers parameters is wrong</action>
<!-- ADDS --> <!-- ADDS -->
<action type="add" dev="ggregory" due-to="Gary Gregory">Add BooleanUtils.booleanValues().</action> <action type="add" dev="ggregory" due-to="Gary Gregory">Add BooleanUtils.booleanValues().</action>
<action type="add" dev="ggregory" due-to="Gary Gregory">Add BooleanUtils.primitiveValues().</action> <action type="add" dev="ggregory" due-to="Gary Gregory">Add BooleanUtils.primitiveValues().</action>

View File

@ -309,8 +309,10 @@ public static String random(final int count, final int start, final int end, fin
* @param count the length of random string to create * @param count the length of random string to create
* @param start the position in set of chars to start at * @param start the position in set of chars to start at
* @param end the position in set of chars to end before * @param end the position in set of chars to end before
* @param letters only allow letters? * @param letters if {@code true}, generated string may include
* @param numbers only allow numbers? * alphabetic characters
* @param numbers if {@code true}, generated string may include
* numeric characters
* @param chars the set of chars to choose randoms from. * @param chars the set of chars to choose randoms from.
* If {@code null}, then it will use the set of all chars. * If {@code null}, then it will use the set of all chars.
* @return the random string * @return the random string
@ -343,8 +345,10 @@ public static String random(final int count, final int start, final int end, fin
* @param count the length of random string to create * @param count the length of random string to create
* @param start the position in set of chars to start at (inclusive) * @param start the position in set of chars to start at (inclusive)
* @param end the position in set of chars to end before (exclusive) * @param end the position in set of chars to end before (exclusive)
* @param letters only allow letters? * @param letters if {@code true}, generated string may include
* @param numbers only allow numbers? * alphabetic characters
* @param numbers if {@code true}, generated string may include
* numeric characters
* @param chars the set of chars to choose randoms from, must not be empty. * @param chars the set of chars to choose randoms from, must not be empty.
* If {@code null}, then it will use the set of all chars. * If {@code null}, then it will use the set of all chars.
* @param random a source of randomness. * @param random a source of randomness.