In Java, is there any difference between this two function declarations?
public void foo() {/*...*/} public void foo(void) {/*...*/}
Here you
You can try
public void foo(Void v) {/*...*/}