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

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

Introduction

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

The text is from its open source code.

Method

byte[]nextBytes(final int count)

Creates an array of random bytes.

doublenextDouble(final double startInclusive, final double endInclusive)

Returns a random double within the specified range.

floatnextFloat(final float startInclusive, final float endInclusive)

Returns a random float within the specified range.

intnextInt(final int startInclusive, final int endExclusive)

Returns a random integer within the specified range.

longnextLong(final long startInclusive, final long endExclusive)

Returns a random long within the specified range.