static IVF1 objectMethodToIVF1(O object, S method) { ret object == null ? null : new IVF1 { public void get(O a) { call(object, method, a); } }; }