public interface  oadd.org.apache.commons.math.random.RandomData extends java.lang.Object
{
public abstract java.lang.String nextHexString(int) throws oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract int nextInt(int, int) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException;
public abstract long nextLong(long, long) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException;
public abstract java.lang.String nextSecureHexString(int) throws oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract int nextSecureInt(int, int) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException;
public abstract long nextSecureLong(long, long) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException;
public abstract long nextPoisson(double) throws oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract double nextGaussian(double, double) throws oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract double nextExponential(double) throws oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract double nextUniform(double, double) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException, oadd.org.apache.commons.math.exception.NotFiniteNumberException, oadd.org.apache.commons.math.exception.NotANumberException;
public abstract double nextUniform(double, double, boolean) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException, oadd.org.apache.commons.math.exception.NotFiniteNumberException, oadd.org.apache.commons.math.exception.NotANumberException;
public abstract int[] nextPermutation(int, int) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException, oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract java.lang.Object[] nextSample(java.util.Collection, int) throws oadd.org.apache.commons.math.exception.NumberIsTooLargeException, oadd.org.apache.commons.math.exception.NotStrictlyPositiveException;
}