static <E extends Exception> BooleanSupplier |
BooleanSupplierWithException.ignored(BooleanSupplierWithException<E> supplier) |
Converts a BooleanSupplierWithException to a lifted
BooleanSupplier returning null in case of exception.
|
static <E extends Exception> BooleanSupplier |
BooleanSupplierWithException.ignored(BooleanSupplierWithException<E> supplier,
boolean defaultValue) |
Converts a BooleanSupplierWithException to a lifted
BooleanSupplier returning a default value in case of exception.
|
static <E extends Exception> BooleanSupplier |
BooleanSupplierWithException.lifted(BooleanSupplierWithException<E> supplier) |
Converts a BooleanSupplierWithException to a lifted
BooleanSupplier returning null in case of exception.
|
static <E extends Exception> BooleanSupplier |
BooleanSupplierWithException.unchecked(BooleanSupplierWithException<E> supplier) |
Converts a BooleanSupplierWithException to a BooleanSupplier
that wraps exception to RuntimeException .
|
static <E extends Exception> BooleanSupplier |
BooleanSupplierWithException.unchecked(BooleanSupplierWithException<E> supplier,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a BooleanSupplierWithException to a BooleanSupplier
that wraps exception to RuntimeException by using the provided
mapping function.
|