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