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

com.gojek.de.stencil.utils.RandomUtils Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package com.gojek.de.stencil.utils;

import java.util.Random;

public class RandomUtils {

    public int getRandomNumberInRange(int min, int max) {

        if (min >= max) {
            throw new IllegalArgumentException("max must be greater than min");
        }

        Random r = new Random();
        return r.nextInt((max - min) + 1) + min;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy