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

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.lang3.RandomStringUtils has subclasses.
Click this link to see all its subclasses.

Constructor

RandomStringUtils()

RandomStringUtils instances should NOT be constructed in standard programming.

Method

StringrandomAlphabetic(final 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(final 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(final 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(final int count)

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

Characters will be chosen from the set of numeric characters.