@FunctionalInterface
@Generated(value="uk.kludje.annotation.processor.UncheckedFunctionalInterfaceProcessor")
public interface UBooleanSupplier
extends java.util.function.BooleanSupplier
boolean $getAsBoolean() throws Throwable USING A LAMBDA; INVOKE boolean getAsBoolean().
A functional interface for handling checked exceptions. See parent type for interface intent.
boolean getAsBoolean() invokes boolean $getAsBoolean()
and throws anything thrown by boolean $getAsBoolean().
General example using java.lang.Runnable that reduces 11 lines to a single line.
Call someMethodThatThrowsException in throwsNothing:
public void someMethodThatThrowsException() throws IOException {
// I/O functionality
}
public void throwsNothing(Runnable r) {
r.run();
}
Before:
public void yourMethod() throws IOException {
try {
throwsNothing(() -> {
try {
someMethodThatThrowsException();
} catch (IOException e) {
throw new SomeWrapperException(e);
}
});
} catch(SomeWrapperException w) {
throw (IOException) w.getCause();
}
}
After:
public void yourMethod() throws IOException {
throwsNothing((URunnable) this::someMethodThatThrowsException);
}
Method public static UBooleanSupplier asUBooleanSupplier(UBooleanSupplier t)
provides a convenience method for manufacturing types as an alternative to casting.
| Modifier and Type | Method and Description |
|---|---|
boolean |
$getAsBoolean() |
static UBooleanSupplier |
asUBooleanSupplier(UBooleanSupplier t) |
default boolean |
getAsBoolean() |
default boolean getAsBoolean()
getAsBoolean in interface java.util.function.BooleanSupplierboolean $getAsBoolean()
throws java.lang.Throwable
java.lang.Throwablestatic UBooleanSupplier asUBooleanSupplier(UBooleanSupplier t)