public interface Function<F,T>
Exception.| Modifier and Type | Method and Description |
|---|---|
T |
apply(F input)
Returns the result of applying this function to
input. |
T apply(F input) throws Exception
input. This method is generally
expected, but not absolutely required, to have the following properties:
NullPointerException - if input is null and this function does not accept null
argumentsException - if an exception occurred during applying the function.Copyright © 2008-2016. All Rights Reserved.