Class BigIntegerRangeRandomizer

java.lang.Object
org.jeasy.random.randomizers.range.BigIntegerRangeRandomizer
All Implemented Interfaces:
Randomizer<BigInteger>

public class BigIntegerRangeRandomizer extends Object implements Randomizer<BigInteger>
Generate a random BigInteger in the given range.
Author:
RĂ©mi Alvergnat ([email protected])
  • Constructor Details

    • BigIntegerRangeRandomizer

      public BigIntegerRangeRandomizer(Integer min, Integer max)
      Parameters:
      min - min value (inclusive)
      max - max value (exclusive)
    • BigIntegerRangeRandomizer

      public BigIntegerRangeRandomizer(Integer min, Integer max, long seed)
      Parameters:
      min - min value (inclusive)
      max - max value (exclusive)
      seed - initial seed
  • Method Details