Package benchmark.generator

Examples of benchmark.generator.ValueGenerator


  private Integer reviewCount;
  private Integer offerCount;

  public SQLParameterPool(File resourceDirectory, Long seed) {
    Random seedGen = new Random(seed);
    valueGen = new ValueGenerator(seedGen.nextLong());
    countryGen = Generator.createCountryGenerator(seedGen.nextLong());

    init(resourceDirectory);
  }
View Full Code Here

TOP

Related Classes of benchmark.generator.ValueGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.