net.sf.fmj.media.rtp.TrueRandom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
The newest version!
package net.sf.fmj.media.rtp;
import java.util.*;
public final class TrueRandom
{
private static final Random random = new Random();
public static int nextInt()
{
return random.nextInt();
}
public static long nextLong()
{
return random.nextLong();
}
public TrueRandom()
{
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy