public interface Function<T,R>
As sdk is compiled with target version 1.7, we can not make use of functional interface offered by Java8. This is interface is drop-in substitute for Function interface offered in Java8
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T t)
Applies this function to the given argument.
|
Copyright © 2019. All rights reserved.