Java org.apache.commons.lang RandomStringUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang RandomStringUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang RandomStringUtils.

The text is from its open source code.

Constructor

RandomStringUtils()

RandomStringUtils instances should NOT be constructed in standard programming.

Method

StringrandomAlphabetic(int count)

Creates a random string whose length is the number of characters specified.

Characters will be chosen from the set of alphabetic characters.

StringrandomAlphanumeric(int count)

Creates a random string whose length is the number of characters specified.

Characters will be chosen from the set of alpha-numeric characters.

StringrandomAscii(int count)

Creates a random string whose length is the number of characters specified.

Characters will be chosen from the set of characters whose ASCII value is between 32 and 126 (inclusive).

StringrandomNumeric(int count)

Creates a random string whose length is the number of characters specified.

Characters will be chosen from the set of numeric characters.