![JAR search and dependency download from the Maven repository](/logo.png)
uk.kludje.fn.function.ULongUnaryOperator Maven / Gradle / Ivy
/*Generated file; do not edit*/
package uk.kludje.fn.function;
/**
* A functional interface for handling checked exceptions.
* See parent type for intent.
*/
@java.lang.FunctionalInterface
@javax.annotation.Generated("uk.kludje.annotation.processor.UncheckedFunctionalInterfaceProcessor")
public interface ULongUnaryOperator extends java.util.function.LongUnaryOperator {
/**
* Invokes {@code long $applyAsLong(long arg0)}.
* Throws anything thrown by {@code long $applyAsLong(long arg0)}.
*/
default long applyAsLong(long arg0) {
try {
return $applyAsLong(arg0);
} catch (Throwable throwable) {
throw uk.kludje.Exceptions.throwChecked(throwable);
}
}
long $applyAsLong(long arg0) throws Throwable;
/**
* Convenience method as an alternative to casting.
*
* @param t the unchecked type
* @return t
*/
public static ULongUnaryOperator asULongUnaryOperator(ULongUnaryOperator t) {
return t;
}
}