net.mintern.functions.unary.ShortToNil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-unary-all Show documentation
Show all versions of functions-unary-all Show documentation
Provides functional interfaces for all two-argument functions
package net.mintern.functions.unary;
/**
* An operation of type {@code (short) -> void}.
*
*/
@FunctionalInterface
public interface ShortToNil extends
net.mintern.functions.unary.checked.ShortToNilE {
/**
* Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
* {@code Exception} to a {@code RuntimeException}.
*
* @param the {@code Exception} type that the operation may throw
* @param toRuntime if a checked exception is thrown from
* {@link net.mintern.functions.unary.checked.ShortToNilE#call}, then this function
* is called in in order to convert it to a {@code RuntimeException}
* @param f the operation to wrap
* @return a wrapped version of {@code f} that does not throw checked exceptions
*/
@SuppressWarnings("unchecked")
static ShortToNil unchecked(
java.util.function.Function super E, RuntimeException> toRuntime,
net.mintern.functions.unary.checked.ShortToNilE f) {
return (sh) -> {
try {
f.call(sh);
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw toRuntime.apply((E) e);
}
};
}
/**
* Returns a wrapped version of {@code f} that wraps any checked {@code Exception} with a
* {@code RuntimeException}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the operation to wrap
* @return a wrapped version of {@code f} that does not throw checked exceptions
*/
static ShortToNil unchecked(
net.mintern.functions.unary.checked.ShortToNilE f) {
return unchecked(RuntimeException::new, f);
}
/**
* Returns a wrapped version of {@code f} that wraps any {@code IOException} with an
* {@link java.io.UncheckedIOException}.
*
* @param the {@code Exception} type that the operation may throw
* @param f the operation to wrap
* @return a wrapped version of {@code f} that throws {@code UncheckedIOException} instead of
* {@code IOException}
*/
static ShortToNil uncheckedIO(
net.mintern.functions.unary.checked.ShortToNilE f) {
return unchecked(java.io.UncheckedIOException::new, f);
}
/**
* Binds {@code (sh)} to {@code f}, returning a new function
* of type {@code () -> void}.
*
* @param f the unbound function
* @param sh the argument
* @return a new function {@code () -> void} that calls
* {@code f.call(sh)}.
*/
static net.mintern.functions.nullary.NilToNil
bind(ShortToNil f, short sh) {
return () -> f.call(sh);
}
/**
* Binds {@code (sh)} to {@code this}, returning a new function
* of type {@code () -> void}.
*
* @param sh the argument
* @return a new function {@code () -> void} that calls
* {@code this.call(sh)}.
*/
@Override
default net.mintern.functions.nullary.NilToNil bind(short sh) {
return ShortToNil.bind(this, sh);
}
}