mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-06 01:58:24 +00:00
Improve description of alphabetic and alphanumeric.
This commit is contained in:
parent
7f7fa03eac
commit
cdfb2aa1e1
@ -102,8 +102,8 @@ public static String randomAscii(final int minLengthInclusive, final int maxLeng
|
|||||||
* <p>Creates a random string whose length is the number of characters
|
* <p>Creates a random string whose length is the number of characters
|
||||||
* specified.</p>
|
* specified.</p>
|
||||||
*
|
*
|
||||||
* <p>Characters will be chosen from the set of alphabetic
|
* <p>Characters will be chosen from the set of Latin alphabetic
|
||||||
* characters.</p>
|
* characters (a-z, A-Z).</p>
|
||||||
*
|
*
|
||||||
* @param count the length of random string to create
|
* @param count the length of random string to create
|
||||||
* @return the random string
|
* @return the random string
|
||||||
@ -116,7 +116,7 @@ public static String randomAlphabetic(final int count) {
|
|||||||
* <p>Creates a random string whose length is between the inclusive minimum and
|
* <p>Creates a random string whose length is between the inclusive minimum and
|
||||||
* the exclusive maximum.</p>
|
* the exclusive maximum.</p>
|
||||||
*
|
*
|
||||||
* <p>Characters will be chosen from the set of alphabetic characters.</p>
|
* <p>Characters will be chosen from the set of Latin alphabetic characters (a-z, A-Z).</p>
|
||||||
*
|
*
|
||||||
* @param minLengthInclusive the inclusive minimum length of the string to generate
|
* @param minLengthInclusive the inclusive minimum length of the string to generate
|
||||||
* @param maxLengthExclusive the exclusive maximum length of the string to generate
|
* @param maxLengthExclusive the exclusive maximum length of the string to generate
|
||||||
@ -131,8 +131,8 @@ public static String randomAlphabetic(final int minLengthInclusive, final int ma
|
|||||||
* <p>Creates a random string whose length is the number of characters
|
* <p>Creates a random string whose length is the number of characters
|
||||||
* specified.</p>
|
* specified.</p>
|
||||||
*
|
*
|
||||||
* <p>Characters will be chosen from the set of alpha-numeric
|
* <p>Characters will be chosen from the set of Latin alphabetic
|
||||||
* characters.</p>
|
* characters (a-z, A-Z) and the digits 0-9.</p>
|
||||||
*
|
*
|
||||||
* @param count the length of random string to create
|
* @param count the length of random string to create
|
||||||
* @return the random string
|
* @return the random string
|
||||||
@ -145,7 +145,8 @@ public static String randomAlphanumeric(final int count) {
|
|||||||
* <p>Creates a random string whose length is between the inclusive minimum and
|
* <p>Creates a random string whose length is between the inclusive minimum and
|
||||||
* the exclusive maximum.</p>
|
* the exclusive maximum.</p>
|
||||||
*
|
*
|
||||||
* <p>Characters will be chosen from the set of alpha-numeric characters.</p>
|
* <p>Characters will be chosen from the set of Latin alphabetic
|
||||||
|
* characters (a-z, A-Z) and the digits 0-9.</p>
|
||||||
*
|
*
|
||||||
* @param minLengthInclusive the inclusive minimum length of the string to generate
|
* @param minLengthInclusive the inclusive minimum length of the string to generate
|
||||||
* @param maxLengthExclusive the exclusive maximum length of the string to generate
|
* @param maxLengthExclusive the exclusive maximum length of the string to generate
|
||||||
|
Loading…
x
Reference in New Issue
Block a user