Package org.linkki.util
Class BooleanSuppliers
- java.lang.Object
-
- org.linkki.util.BooleanSuppliers
-
public class BooleanSuppliers extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BooleanSuppliernegate(BooleanSupplier original)Returns a boolean supplier that represents the logical negation of the given boolean supplier.
-
-
-
Method Detail
-
negate
public static BooleanSupplier negate(BooleanSupplier original)
Returns a boolean supplier that represents the logical negation of the given boolean supplier.- Parameters:
original- the boolean supplier to be negated- Returns:
- a boolean supplier that represents the logical negation of the given boolean supplier
-
-