Package net.groboclown.retval.function
Interface NonnullParamFunction<T,R>
-
- Type Parameters:
T- parameter typeR- return type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NonnullParamFunction<T,R>A version of theFunctioninterface where the parameter is explicitly non-null, and the return value is nullable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T value)Runs the function.
-