public class Conditionals
extends java.lang.Object
| Constructor and Description |
|---|
Conditionals() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
all(java.lang.Boolean... booleans) |
static boolean |
any(java.lang.Boolean... booleans) |
static <T> boolean |
equals(T o1,
T o2) |
static <T> boolean |
equalsAll(T value,
T... tests) |
static <T> boolean |
equalsAny(T value,
T... tests) |
static <T> boolean |
equalsNone(T value,
T... tests) |
static boolean |
isInstanceOf(java.lang.Object obj,
java.lang.Class<?> clazz) |
static boolean |
none(java.lang.Boolean... booleans) |
static boolean |
not(java.lang.Boolean test) |
static <T> boolean |
notEquals(T o1,
T o2) |
public static boolean any(java.lang.Boolean... booleans)
public static boolean none(java.lang.Boolean... booleans)
public static boolean all(java.lang.Boolean... booleans)
@SafeVarargs
public static <T> boolean equalsAll(T value,
T... tests)
@SafeVarargs
public static <T> boolean equalsAny(T value,
T... tests)
@SafeVarargs
public static <T> boolean equalsNone(T value,
T... tests)
public static boolean isInstanceOf(java.lang.Object obj,
java.lang.Class<?> clazz)
public static <T> boolean notEquals(T o1,
T o2)
public static <T> boolean equals(T o1,
T o2)
public static boolean not(java.lang.Boolean test)