class Test { interface One { S save(S entity); Iterable save(Iterable entities); } static One foo; public static void main(String[] args) throws Exception { foo.save (null); } }