
utils.BooleanUtilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Utilities Show documentation
Show all versions of Utilities Show documentation
Java Utilities library containing general use utilities
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