List of usage examples for org.apache.commons.lang.math RandomUtils nextFloat
public static float nextFloat(Random random)
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from the given Random sequence.
From source file:org.isisaddons.module.fakedata.dom.Floats.java
@Programmatic public float any() { return RandomUtils.nextFloat(fake.random); }