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

io.toolisticon.githubactions.RandomUtility Maven / Gradle / Ivy

The newest version!
package io.toolisticon.githubactions;

import java.util.Random;

/**
 * Example utility with useful methods.
 */
public class RandomUtility {
    /**
     * Returns a random number.
     *
     * @return random number.
     */
    public static Long getRandomNumber() {
        return new Random().nextLong();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy