![JAR search and dependency download from the Maven repository](/logo.png)
uk.kludje.fn.function.UToIntFunction 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 UToIntFunction extends java.util.function.ToIntFunction {
/**
* Invokes {@code int $applyAsInt(T arg0)}.
* Throws anything thrown by {@code int $applyAsInt(T arg0)}.
*/
default int applyAsInt(T arg0) {
try {
return $applyAsInt(arg0);
} catch (Throwable throwable) {
throw uk.kludje.Exceptions.throwChecked(throwable);
}
}
int $applyAsInt(T arg0) throws Throwable;
/**
* Convenience method as an alternative to casting.
*
* @param t the unchecked type
* @return t
*/
public static UToIntFunction asUToIntFunction(UToIntFunction t) {
return t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy