Improve description of alphabetic and alphanumeric.

This commit is contained in:
duncan 2016-12-14 20:46:10 +00:00
parent 7f7fa03eac
commit cdfb2aa1e1
1 changed files with 7 additions and 6 deletions

View File

@ -102,8 +102,8 @@ public class RandomStringUtils {
* <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 class RandomStringUtils {
* <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 class RandomStringUtils {
* <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 class RandomStringUtils {
* <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