Class RandomService

java.lang.Object
net.datafaker.service.RandomService

public class RandomService extends Object
  • Constructor Details

    • RandomService

      public RandomService()
      Uses a default shared random.
    • RandomService

      public RandomService(Random random)
      Parameters:
      random - If null is passed in, a default Random is assigned
  • Method Details

    • nextInt

      public int nextInt()
    • nextInt

      public int nextInt(int n)
    • nextInt

      public Integer nextInt(int min, int max)
    • nextFloat

      public float nextFloat()
    • nextLong

      public long nextLong()
    • nextLong

      public long nextLong(long n)
    • nextLong

      public long nextLong(long min, long max)
    • nextDouble

      public double nextDouble()
    • nextDouble

      public double nextDouble(double min, double max)
    • nextBoolean

      public boolean nextBoolean()
    • nextRandomBytes

      public byte[] nextRandomBytes(int numberOfBytes)
    • hex

      public String hex()
    • hex

      public String hex(int length)
    • hex

      public String hex(int length, boolean upper)
    • getRandomInternal

      public Random getRandomInternal()