I know how to create a reference to a method that has a String parameter and returns an int, it\'s:
String
int
Function
This is not specific to Java 8. You are trying to compile something equivalent to:
interface I { void m(); } class C implements I { public void m() throws Exception {} //can't compile }