The scenario is:
interface MyInterface<S,T> {
Function<S,T> myHighOrderFunction(Object... parameters);
}
I call:
Function<A,B> f = someImplementation.myHighOrderFunction(...);
And would now like to be able to store f (which, as I understand it, is a class) to be loaded in a future run.