I have the following two methods in a class:
public void Test(int i){ System.out.println(\"1\"); } public void Test(Integer i){ System.out.println(\"
Strange but true:
this.getClass().getMethod("Test",int.class).invoke(this, 10);