All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prng.seeds.ZeroSeedSource Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package prng.seeds;

import prng.generator.SeedSource;

/**
 * All requested seeds consist wholly of zeros.
 *
 * @author Simon Greatrix
 */
public class ZeroSeedSource implements SeedSource {

  /**
   * A singleton source as all seeds are identical.
   */
  public static final SeedSource SOURCE = new ZeroSeedSource();


  @Override
  public byte[] getSeed(int size) {
    return new byte[size];
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy