interface Function { R fun(S s); } class Bar extends Function{ public Object fun(String s) { return null; } }