public class BooleanUtils
extends java.lang.Object
| Constructor and Description |
|---|
BooleanUtils() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
max(java.util.List<java.lang.Boolean> booleans)
Returns the max boolean in the booleans list.
|
static boolean |
min(java.util.List<java.lang.Boolean> booleans)
Returns the min boolean in the booleans list.
|
static Range<java.lang.Boolean> |
range(java.util.List<java.lang.Boolean> booleans)
Returns the range of booleans.
|
public static boolean min(java.util.List<java.lang.Boolean> booleans)
booleans - the booleans to calculate the min.public static boolean max(java.util.List<java.lang.Boolean> booleans)
booleans - the booleans to calculate the max.public static Range<java.lang.Boolean> range(java.util.List<java.lang.Boolean> booleans)
booleans - the booleans to calculate the range.