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

utils.BooleanUtilities Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package utils;

import java.util.Random;

/**
 * Methods for working with boolean values.
 */
public class BooleanUtilities {

    private final Printer log = new Printer(BooleanUtilities.class);

    /**
     * Generates and returns a random boolean value.
     *
     * @return The randomly generated boolean value.
     */
    public Boolean generateRandomBoolean(){
        return new Random().nextBoolean();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy