@FunctionalInterface
@Generated(value="uk.kludje.annotation.processor.UncheckedFunctionalInterfaceProcessor")
public interface ULongBinaryOperator
extends java.util.function.LongBinaryOperator
long $applyAsLong(long arg0, long arg1) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(long arg0, long arg1).
A functional interface for handling checked exceptions. See parent type for interface intent.
long applyAsLong(long arg0, long arg1) invokes long $applyAsLong(long arg0, long arg1)
and throws anything thrown by long $applyAsLong(long arg0, long arg1).
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 ULongBinaryOperator asULongBinaryOperator(ULongBinaryOperator t)
provides a convenience method for manufacturing types as an alternative to casting.
| Modifier and Type | Method and Description |
|---|---|
long |
$applyAsLong(long arg0,
long arg1) |
default long |
applyAsLong(long arg0,
long arg1) |
static ULongBinaryOperator |
asULongBinaryOperator(ULongBinaryOperator t) |
default long applyAsLong(long arg0,
long arg1)
applyAsLong in interface java.util.function.LongBinaryOperatorlong $applyAsLong(long arg0,
long arg1)
throws java.lang.Throwable
java.lang.Throwablestatic ULongBinaryOperator asULongBinaryOperator(ULongBinaryOperator t)